搜索 URL 中的空格并在记事本中替换++
我不太明白正则表达式是如何工作的。我有一个 xml 文件,需要搜索并替换其中的特定空格。
示例:
我的 URL 的一部分如下所示:
/l-San Francisco CA
我需要它如下所示:
/l-San+Francisco+CA
我的 XML 文件中有数千个 URL 需要修复。在 Notepad++ 中手动检查、搜索和替换每一项是极其乏味的。
I don't quite understand how regexes work. I have an xml file that I need to search and replace specific white spaces in it.
Example:
I have part of a URL that looks like this:
/l-San Francisco CA
and I need it to look like this:
/l-San+Francisco+CA
I have thousands of URLs in the XML file that I need to fix. Manually going through and searching and replacing each one in Notepad++ is extremely tedious.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 np++ 查找选项中打开选项“grep search”。然后搜索
But you might not need escape the initialforward-slash:
并将其替换为:
您可能需要替换所有几次才能修复先前替换创建的新匹配项,但 4 次点击比 4000 次更好: )。
在“全部替换”之前仔细检查正则表达式是否适用于单个匹配始终是个好主意。
或者替换:
为:
Toggle the option 'grep search' on in the np++ find options. Then search for
But you might not need to escape the initial forward-slash:
And replace it with:
You might need to do replace all a few times to fix the new matches that the previous replace created, but 4 clicks is better then 4000 :).
Always a good idea to double check that the regex works on a single match before 'replace all'.
Or replace:
With: