摘要: 阅读全文
posted @ 2008-06-19 15:46 Athrun 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 匹配中文字符的正则表达式: [\u4e00-\u9fa5] 匹配双字节字符(包括汉字在内):[^\x00-\xff] 应用:计算字符串的长度(一个双字节字符长度计2,ASCII字符计1) String.prototype.len=function(){return this.replace([^\x00-\xff]/g,"aa").length;} 匹配空行的正则表达式:\n[\s| ]*... 阅读全文
posted @ 2008-06-19 11:47 Athrun 阅读(787) 评论(0) 推荐(0) 编辑