搜索##anything##的所有实例
我的 Javascript 代码中有这个正则表达式:
/##+[A-z]+##/
当在以下文本上使用它时:
<a href="EditUsers.aspx?UserName=##UserName##">##Address##</a>
它仅匹配 ##UserName##
,而它应该匹配 ##UserName##
> 和##地址##
。
我做错了什么?
I have this regular expression in my Javascript code:
/##+[A-z]+##/
When using it on the following text:
<a href="EditUsers.aspx?UserName=##UserName##">##Address##</a>
it only matches ##UserName##
, whereas it should match both ##UserName##
and ##Address##
.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要
g
标志来执行全局搜索:顺便说一句,您确定第一个
+
吗?不区分大小写通常是使用i
标志来完成的。也许你想要:
You need the
g
flag to perform a global search:BTW, are you sure about that first
+
? And case-insensitivity is usually done with thei
flag.Perhaps you want: