0

如何utm_content使用 Notepad++ 从文件中的所有 url 中查找和删除参数?

样本数据:

http://example.com/content1.html?utm_content=product1
http://example.com/abc2.html?utm_content=homepage
http://example.com/test/?utm_content=sku1234
http://example.com/runapp?utm_content=31231KS
http://example.com/blabla?utm_content=nl-laptops-tablets

期望的结果:

http://example.com/content1.html
http://example.com/abc2.html
http://example.com/test/
http://example.com/runapp
http://example.com/blabla

注意:据我了解,Notepad++ 正则表达式使用标准 PCRE (Perl) 语法。

4

3 回答 3

2

据我了解您的需求:

搜索:

\?utm_content=.*?"

并替换为"

于 2012-04-19T13:51:10.227 回答
2

如果这是唯一的一个参数,则搜索\?utm_content=\w+\?utm_content=.*用零字符串替换它。

于 2012-04-19T13:51:59.690 回答
-1

使用标准搜索和替换 (Ctrl + R)

编辑:

搜索: utm_content

代替:

按查找,然后按更换休息。

于 2012-04-19T13:59:03.023 回答