System.DateTime currentTime=new System.DateTime();
currentTime=System.DateTime.Now;
int 年=currentTime.Year;
int 月=currentTime.Month;
int 日=currentTime.Day;
int 時=currentTime.Hour;
int 分=currentTime.Minute;
int 秒=currentTime.Second;
int 毫秒=currentTime.Millisecond;
(變量可用中文)
string strY=currentTime.ToString("f"); //不顯示秒
string strYM=currentTime.ToString("y");
string strMD=currentTime.ToString("m");
string strYMD=currentTime.ToString("d");
string strT=currentTime.ToString("t");
int Len = str.Length ; //Len是自定義變量, str是求測的字串的變量名
System.Text.StringBuilder sb = new System.Text.StringBuilder("");
sb.Append("中華");
sb.Append("人民");
sb.Append("共和國");
String user_IP=Request.ServerVariables["REMOTE_ADDR"].ToString();
if(Request.ServerVariables["HTTP_VIA"]!=null){
string user_IP=Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
}else{
string user_IP=Request.ServerVariables["REMOTE_ADDR"].ToString();
}
Session["變量"];
Session["username"]="小布什";
Object objName=Session["username"];
String strName=objName.ToString();
Session.RemoveAll();
String str=Request.QueryString["變量"];
Response.Write("字串");
Response.Write(變量);
Response.Redirect("URL地址");
char.IsWhiteSpce(字串變量,位數)——邏輯型;
string str="中國 人民";
Response.Write(char.IsWhiteSpace(str,2)); //結果為:True, 第一個字符是0位,2是第三個字符。
char.IsPunctuation('字符') --邏輯型
Response.Write(char.IsPunctuation('A')); //返回:False
Response.Write((int)'中'); //結果為中字的代碼:20013
Response.Write((char)22269); //返回“國”字。
string str="中國";
str=str.Replace("國","央"); //將國字換為央字
Response.Write(str); //輸出結果為“中央”
string str="這是<script>腳本";
str=str.Replace("<","<font><</font>"); //將左尖括號替換為<font> 與 < 與 </font> (或換為<,但估計經XML存諸後,再提出仍會還原)
Response.Write(str); //顯示為:“這是<script>腳本”
string strSubmit=label1.Text; //label1是你讓用戶提交數據的控件ID。
strSubmit=strSubmit.Replace("<","<font><</font>");
string str1; str2
//語法: str1.EndsWith(str2); __檢測字串str1是否以字串str2結尾,返回布爾值.如:
if(str1.EndsWith(str2)){ Response.Write("字串str1是以"+str2+"結束的"); }
//語法:str1.Equals(str2); __檢測字串str1是否與字串str2相等,返回布爾值,用法同上.
//語法 Equals(str1,str2); __檢測字串str1是否與字串str2相等,返回布爾值,用法同上.
str1.IndexOf("字"); //查找“字”在str1中的索引值(位置)
str1.IndexOf("字串");//查找“字串”的第一個字符在str1中的索引值(位置)
str1.IndexOf("字串",3,2);//從str1第4個字符起,查找2個字符,查找“字串”的第一個字符在str1中的索引值(位置)
str1.Insert(1,"字");在str1的第二個字符處插入“字”,如果str1="中國",插入後為“中字國”;
<%
string str1="中國人";
str1=str1.PadLeft(10,'1'); //無第二參數為加空格
Response.Write(str1); //結果為“1111111中國人” , 字串長為10
%>
har[] charArray = "abcde".ToCharArray();
Array.Reverse(charArray);
Console.WriteLine(new string(charArray));
string str="abcEEDddd";
Response.Write(Char.IsUpper(str,3));