当前位置: 编程技术>其它
正则表达式在线测试工具
来源: 互联网 发布时间:2014-10-14
本文导语: 代码如下: 在线测试正则表达式工具-梦迟出品 function mengchi(){ var a=document.getElementById("mc1").value; var b=document.getElementById("mc2").value; var c=new RegExp(a,"g"); document.getElementById("mc3").value=""; pipei.innerHTML="匹配结果:0";...
代码如下:
在线测试正则表达式工具-梦迟出品
function mengchi(){
var a=document.getElementById("mc1").value;
var b=document.getElementById("mc2").value;
var c=new RegExp(a,"g");
document.getElementById("mc3").value="";
pipei.innerHTML="匹配结果:0";
var arrMactches = b.match(c);
for (var i=0;i < arrMactches.length ; i++){
if (a!=""){
ee=document.getElementById("mc3").value+"n"+arrMactches[i];
document.getElementById("mc3").value=ee;
pipei.innerHTML="匹配结果:"+(i+1);
}
}
document.getElementById("mc3").value=document.getElementById("mc3").value.replace("rn","");
}
function charu (text) {
document.all.mc1.focus();
event.srcElement.document.selection.createRange().text += text;
document.all.mc1.blur();
}
function qingchu () {
document.getElementById("mc1").value="";
}
正则表达式:
处理数据:
处理结果:
在线测试 http://www./tools/zhengze.htm
在线工具2 http://tools./tools/regex.asp