正则表达式不允许太多连续的非空白字符 - 同时允许链接

发布于 2024-11-03 08:48:53 字数 1813 浏览 1 评论 0原文

我希望使用正则表达式仅用前 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

影子的影子 2024-11-10 08:48:53

我想出了这个,一些快速测试似乎表明它对我有用,但请告诉我它是否适合您。

$comment = preg_replace('/(^|\s)((?!http)[^\s"]{25})[^\s"]+/i', '$1$2', $comment);

显然将 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.

$comment = preg_replace('/(^|\s)((?!http)[^\s"]{25})[^\s"]+/i', '$1$2', $comment);

Obviously replace the 25 with whatever your max length should be.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文