使用正则表达式替换字符串中的换行符
我正在使用以下正则表达式从字符串中删除换行符:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您尝试删除单个字符,请使用
tr
而不是s///
。这将删除所有出现的
\r
或\n
,无论它们在字符串中的各自位置如何。If you're trying to remove single chars, use
tr
rather thans///
.This will remove all occurrences of either
\r
or\n
regardless of their respective positions in the string.您的替换不是全局替换 - 它们仅替换字符串中模式的第一个实例。要进行全局替换,请在最后一个斜杠后添加 ag,如下所示:
您还可以使用字符集将两个替换合并为一个替换:
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:
You can also combine the two substitutions into a single substitution using a character set: