使用正则表达式替换字符串中的换行符

发布于 2024-11-24 00:03:01 字数 214 浏览 0 评论 0原文

我正在使用以下正则表达式从字符串中删除换行符:

$description =~ s/\r//;
$description =~ s/\n//;

但后来我得到了正确的结果:

$description =~ m/\n/

似乎正则表达式没有替换字符串中的所有换行符,对此有什么帮助吗?

I'am using the following regex to remove newlines from a string:

$description =~ s/\r//;
$description =~ s/\n//;

but afterwards I am getting true for:

$description =~ m/\n/

It seems regex did not replace all newlines from the string, any help with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

勿忘初心 2024-12-01 00:03:01

如果您尝试删除单个字符,请使用 tr 而不是 s///

$description =~ tr/\r\n//d;

这将删除所有出现的 \r\n,无论它们在字符串中的各自位置如何。

If you're trying to remove single chars, use tr rather than s///.

$description =~ tr/\r\n//d;

This will remove all occurrences of either \r or \n regardless of their respective positions in the string.

新一帅帅 2024-12-01 00:03:01

您的替换不是全局替换 - 它们仅替换字符串中模式的第一个实例。要进行全局替换,请在最后一个斜杠后添加 ag,如下所示:

$description =~ s/\r//g;
$description =~ s/\n//g;

您还可以使用字符集将两个替换合并为一个替换:

$description =~ s/[\n\r]//g;

Your substitutions are not global substitutions - they replace only the first instance of the pattern in the string. To make a global substitution, add a g after the final slash, like so:

$description =~ s/\r//g;
$description =~ s/\n//g;

You can also combine the two substitutions into a single substitution using a character set:

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