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));
最大的网站源码资源下载站,
新闻热点
疑难解答