求大神帮忙看看怎么回事。
这个是
function getMailAddress(str){
var reg=/\w+@\w+\.(com|cn|org)/i;
if(reg.exec(str)!=null)
alert(reg.exec(str));
else
alert(str + "不存在邮箱格式字符串");
}
<script>getMailAddress("
123123@qq.com大神你好")</script>
然后运行结果为什么比预期的要多一个,com 啊,求大神们帮忙看看,感激不尽
这个是
function getMailAddress(str){
var reg=/\w+@\w+\.(com|cn|org)/i;
if(reg.exec(str)!=null)
alert(reg.exec(str));
else
alert(str + "不存在邮箱格式字符串");
}
<script>getMailAddress("
123123@qq.com大神你好")</script>
然后运行结果为什么比预期的要多一个,com 啊,求大神们帮忙看看,感激不尽