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) 構文を使用します。