摘要:
常用的一些javascript小技巧 [作者:oror,from蓝色理想] 事件源对象 event.srcElement.tagName event.srcElement.type ……………………………… 捕获释放 event.srcEleme... 阅读全文
摘要:
经典正则表达式 作者:阿赖 (Email: A at Lai.com.cn 主页:http://www.9499.net Blog: http://blog.csdn.net/laily/ ) 关键字:正则表达式 模式匹配 Javascript 摘要:收集一些常用的正则表达式。 正则表达式用于字符串处理,表单验证等场合,实用高效,但用到时总是不太把握,以致往往要上网查一番。我将一些常用的... 阅读全文
摘要:
public static string GetFirstString(string stringToSub, int length) { Regex regex = new Regex("[\u4e00-\u9fa5]+", RegexOptions.Compiled); char[] stringChar = stringToSub.... 阅读全文