str.padleft(n,'*')重復輸出
string str = "中國加油!";
str.Dayofweek()為星期幾
str.tostring('yyyy年mm月dd日')
Response.Write(str.IndexOf("中國").ToString());//取相同字符的索引
Response.Write(str.Insert(2,"河南"));//插入
Response.Write(str.Remove(0,2));//移除
Response.Write(str.Replace("中國", "河南"));//替換
Response.Write(str.Substring(0,2));//可以用來截取身份證號獲取生日
Response.Write(str.Trim());//去除兩端空格
日期處理:
DateTime Mydate = new DateTime(2010,4,24);
DateTime Date1 = Mydate.AddHours(-36.3669);
DateTime Date2 = Date1.AddMonths(23);
Response.Write(Date1.ToString()+"<Br/>"+Date2.ToString());
DateTime time1 = new DateTime(2010,4,24,16,48,46);
Response.Write(time1.ToString("d"));//為短日期形式只顯示日期不顯示時間
Response.Write(time1.ToString("dddd HH:mm:ss"));//輸出星期,時間
Response.Write(time1.ToString("yy年MM月dd日"));//輸出日期
數(shù)據(jù)類型處理:
byte a = 15;//單字節(jié)變量
short b = a;//微精度變量
int c = b;//整型
long d = c;//長整型
float e = d;//浮點數(shù)
double q = e;//雙精度
把字符串轉換為數(shù)組:
string Mydata = "hello world";
char[] data = Mydata.ToCharArray();
Response.Write(data[0]);
string Mydata = "hello\\world";
string [] data = Mydata.Split('\\');//用截取字符串的方式
Response.Write(data[0].ToString());
本站僅提供存儲服務,所有內容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權內容,請
點擊舉報。