正規表現 これだけは知っておこう | |
検索サンプル一覧 | 置換サンプル一覧 |
検索用メタ文字 | 置換用メタ文字 |
iPad・iPhone用 テキストエディタ |
class="style1" を class="textstyle_1" に変更する |
(?<=class=")style1" |
---|---|
textstyle_1" |
※赤い字がメタ文字
※背景付きの文字列がヒットした文字列
<!-- "style1" を適用 -->
<p class="style1">昨日の晩ご飯</p>
<ul class="ul.style1">
<li>※外食</li>
</ul>
※背景付きの文字列が置き換わった文字列
<!-- "style1" を適用 -->
<p class="textstyle_1">昨日の晩ご飯</p>
<ul class="ul.style1">
<li>※外食</li>
</ul>