如何在 PERL 中使用正则表达式从字符串中删除特定的字符集
1)例如::我有一个 $string ="abc hell_+o w343r2d -000 rebotin"。使用搜索模式和正则表达式有什么方法可以从 PERL 中的字符串中删除或删除 -000 。 2)我想以简单的方式开始通过示例学习正则表达式。哪个是最好的入门教程???
1)For example::I have a $string ="abc hell_+o w343r2d -000 rebotin".Using search pattern and regular expression is there any way to remove or chop -000 from the string in PERL.
2)I want to begin learning regular expression with examples in simple means.Which is the best tutorial to start with???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
print $string
然后会产生“foobaz”,s/foo/bar/g
语法称为 搜索并替换。第一项是要搜索的内容,第二项是要替换的内容。在您的情况下,您希望替换子句为空以删除内容。
$string =~ s/-000//g
将完全删除-000
。print $string
would then yield "foobaz"the
s/foo/bar/g
syntax is called search and replace. The first item is the thing to search for, second item is the thing to replace it with.in your case, you'd want the replace clause to be empty for removing things.
$string =~ s/-000//g
would remove-000
completely.