正则表达式,不匹配网址
我必须匹配超过 30 个字符的单词,但这些单词不能是 url。
我尝试这样做,但效果不佳:
(?]{30})
I have to match words longer than 30 characters, but these words can't be urls.
I tried to do this, but doesn't work fine:
(?<!ftp)([^\s\t\r\n<>]{30})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我有几点:
{31,}
。试试这个:
I have a few points:
ftp://example.com
because you are using a lookbehind, which sees nothing before the first f. Use a lookahead instead.{31,}
.Try this instead:
试试这个:
Try this: