匹配指定字符之后的所有字符串的正则表达式
2个回答
展开全部
不知道你在哪里使用,这里用 js 做为测试,你把如下的内容保存为 html 文件后,浏览器开启允许脚本功能,就可以测试了。相应的正则表达式是:^(?!l-en|l-zh).*$你可以输入测试字串测试看结果,比如:l-zhxxxxx 不匹配l-enyyyyy 不匹配len 匹配lzn 匹配xxxx 匹配
<html><head><script type="text/javascript">function check(){ var str; str = document.getElementById("txtInput").value; if (str.match(/^(?!l-en|l-zh).*$/) != null) { alert("匹配"); } else { alert("不匹配"); }}</script></head><body> 输入:<input type="text" id="txtInput" /> <button type="button" onclick="check()">正则检查</button></form></body></html>
满意请采纳。
<html><head><script type="text/javascript">function check(){ var str; str = document.getElementById("txtInput").value; if (str.match(/^(?!l-en|l-zh).*$/) != null) { alert("匹配"); } else { alert("不匹配"); }}</script></head><body> 输入:<input type="text" id="txtInput" /> <button type="button" onclick="check()">正则检查</button></form></body></html>
满意请采纳。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询