using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Diagnostics; namespace CA100 { class Program { //循环次数:5百万次 const int COUNT = 5000000; //外围循环次数:5次 const int NUM = 5; //准确测量运行时间 static…
js的indexOf,lastIndexOf,slice能帮我们在js字符串处理时少走一些弯路. 程序如下: var url="http://www.cnblogs.com/xiandedanteng/p/8284680.html"; url=url.replace("http://",""); var pos=url.indexOf("/");// 找第一个斜杠位置 var host=url.slice(0,pos);//…
1.substr substr(start,length)表示从start位置开始,截取length长度的字符串. var src="images/off_1.png";alert(src.substr(7,3)); 弹出值为:off 2.substring substring(start,end)表示从start到end之间的字符串,包括start位置的字符但是不包括end位置的字符. var src="images/off_1.png";alert(src.su…