摘要: String.Format = function(str) { var reg; var args; //自定义一个undifined,增快速度 var undifined; if (arguments[1] && typeof (arguments[1]) == "object") { reg = new RegExp("\\{([^\\d]\\w*)\\}", "g"); args = arguments[1]; } else { reg = new RegExp("\\{(\\d+)\\}","g"); //将arguments转换成数组然后赋值给args args = Array.pr 阅读全文
posted @ 2010-11-16 18:37 再快一点 阅读(298) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Security.Cryptography;using System.IO;using System.Linq;using System.Data.SqlClient;using System.Data;using System.Text.RegularExpressions;using System.Diagnostics;using System.Net.Mail;using System.Threading;using System.C 阅读全文
posted @ 2010-11-16 10:06 再快一点 阅读(783) 评论(0) 推荐(0) 编辑