替换文件中所有出现的字符串
我有一个字符串 test.cgi@action=
可以是
我想用 < 替换上面字符串的 任何字符串code>
谁能告诉我如何使用 Perl 脚本继续此操作?
ps:当我发布对现有消息的评论时,我没有得到任何回复。因此,我将发布一条新消息。
I have a string test.cgi@action=<action-name>
<action-name>
can be any string
I would like to replace the above string with <action-name>.html
for all the occurrences within a file.
Can any one please let me know how I can proceed with this using a Perl script?
ps: I didn't get any response when i posted as a comment to existing message. So, I'm posting as a new message.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它是一个文件,您可以只使用
sed
(假设您使用的是某种 *nix 平台)。或者,如果您觉得有风险,可以就地编辑该文件。
If it's a file, you could just use
sed
(assuming you're on some kind of *nix platform).or if you're feeling risky, you can edit the file in place.