搜索 URL 中的空格并在记事本中替换++

发布于 2024-12-04 21:44:54 字数 264 浏览 1 评论 0原文

我不太明白正则表达式是如何工作的。我有一个 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 技术交流群。

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

发布评论

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

评论(1

遗心遗梦遗幸福 2024-12-11 21:44:54

在 np++ 查找选项中打开选项“grep search”。然后搜索

\/(.*) (.*)$

But you might not need escape the initialforward-slash:

/(.*) (.*)$

并将其替换为:

/\1+\2

您可能需要替换所有几次才能修复先前替换创建的新匹配项,但 4 次点击比 4000 次更好: )。

在“全部替换”之前仔细检查正则表达式是否适用于单个匹配始终是个好主意。


或者替换:

/([^ ]+) ([^ ]+)$

为:

/\1+\2

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:

/\1+\2

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:

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