正则表达式不允许太多连续的非空白字符 - 同时允许链接
我希望使用正则表达式仅用前 35 个字符替换连续运行的非空白字符(例如超过 35 个)。我希望允许其中带有“http”的字符串保持原样(以免破坏链接)。
这些字符串将来自用户输入,如果有人连续输入 50 个“x”字符,它可能会超出我的
容器并破坏布局。运行可能出现在一行的开头或中间。EG 我想禁止这些类型的输入:
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
12345 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
但不是这些:
http://somesite.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
12345 http://somesite.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
我从 这个问题
我得到了这个正则表达式的混合结果:
$comment=preg_replace('/^(((?!http).){25})(((?!http).)*)$/imUs', '$1',$comment);
该正则表达式保留了链接,但也将可接受的文本修剪为 25 个字符。
文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本
正在变成
文本文本文本文本tex
从其他问题中阅读正则表达式,我有一种感觉,这可以使用比上面显示的更优雅的正则表达式来完成。感谢您的任何建议。
I'm looking to use a regex to replace sequential runs of non-whitespace characters (say more than 35) with only the first 35 characters. I would like to allow strings with "http" in them to remain as they are (so as not to break links).
The strings will be from user input, and if somebody types 50 'x' characters in a row it may go outside of my <DIV>
container and disrupt the layout. The runs might come at the beginning of a line or in the middle of one.
E.G. I would like to disallow these types of input:
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
12345
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
but not these:
http://somesite.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
12345
http://somesite.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
I got the idea of using a negative lookaround from this question
I'm getting mixed results w/ this regex:
$comment=preg_replace('/^(((?!http).){25})(((?!http).)*)$/imUs', '$1',$comment);
That regex is preserving links, but it is also trimming acceptable text down to 25 characters.
text text text text text text text text text text text text text text text text text text text text text text text text
is becoming
text text text text tex
From reading regex's from other questions, I have a feeling that this can be done with a more elegant regex than I show above. Thanks for any suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想出了这个,一些快速测试似乎表明它对我有用,但请告诉我它是否适合您。
显然将 25 替换为您的最大长度。
I came up with this, and some quick testing seems to show it working for me, but let me know if it works correctly for you.
Obviously replace the 25 with whatever your max length should be.