Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは私が置き換えたいものの例です
3</td><td width="8%">2
と
3 and 2
ただし、正規表現は、上記の例の 3 などの前の任意の数字と一致する必要があり、数字 2 は常に数字 2 です。
前に数字があり、後ろに数字の 2 がある場合は、数字を保持して単語</td><td width="8%">に置き換えます。</td><td width="8%">and
</td><td width="8%">
and
ありがとうございました
私はこれがうまくいくと信じています:
[0-9]+</td><td\swidth="8%">2
エディターがグループ化された編集をサポートしている場合は、括弧を使用して各グループをマークし、必要なグループを編集します。
グループ化されたバージョン:
([0-9]+)(</td><td\swidth="8%">)(2)