從給定的字符串中提取數字,字母和中文,並統計其數量
<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('、'));
">