検索したい文字列 正規表現
クリックで詳細説明に移動 赤字がメタ文字、グレーの「\」はエスケープの「\
URLのパスの途中を変更する (http://)test\.local(/support/mifes/tips/.+\.html)
\1www.server.co.jp\2
途中にパスを追加する (C:\\root\\)(flower.exe)
\1stalk\\leaf\\\2
h3タグをh2タグに変更する (</?)[hH]3
\1h2
tdタグにnowrapを追加する (?i)<td
\0\x20nowrap
イメージファイル「icon_btn」のalignをすべて"top"に変更する (<img src="icon_btn".+?align=").+?(".*?>)
\1top\2
class="style1"  class="textstyle_1" に変更する (?<=class=")style1"
textstyle_1"
特定の行の下に1行追加する <li>お弁当</li>
\0\n<li>水筒</li>