JavaScript正则表达式提取字符串中字母、数字、中文[转]

      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>JavaScript正则表达式提取字符串中字母、数字、中文 - 分享JavaScript-sharejs.com</title>

</head>
<body>

<input type="text" id="oText" value="4000个JavaScript脚本,JavaScript分享网 http://www.sharejs.com">
<input type="button" value="提取数字" onclick="window.alert(self['oText'].value=self['oText'].value.replace(/[^\d]/g,''));">
<input type="button" value="提取中文" onclick="window.alert(self['oText'].value=self['oText'].value.replace(/[^\u4E00-\u9FA5]/g,''));">
<input type="button" value="提取英文" onclick="window.alert(self['oText'].value=self['oText'].value.replace(/[^a-zA-Z]/g,''));">
<input type="button" value="还原" onclick="self['oText'].value='4000个JavaScript脚本,JavaScript分享网 http://www.sharejs.com';">
<br>
<input name="s" value="超过4000个JavaScript脚本程序,JavaScript分享网站 - http://www.sharejs.com">
<input type="button" value="TEST" onclick="
var n = s.value.match(/\d/g);
var e = s.value.match(/[a-z]/ig);
var c = s.value.match(/[^ -~]/g);
alert(n == null ? '没有数字' : '数字有 ' + n.length + ' 个,是:' + n.join('、'));
alert(e == null ? '没有字母' : '字母有 ' + e.length + ' 个,是:' + e.join('、'));
alert(c == null ? '没有中文' : '中文有 ' + c.length + ' 个,是:' + c.join('、'));
">
<br><br>
<div align="center">
获取更多JavaScript代码,请登录JavaScript分享网 <a href="http://www.sharejs.com">http://www.sharejs.com</a>
</div>
</body>
</html>

 

posted @ 2009-05-25 04:37  funnyzak  阅读(4764)  评论(0编辑  收藏  举报