如何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) 语法。