🔰

VSCodeで正規表現を使って文字列一部変更する方法

2023/01/24に公開

正規表現作成時はregex101で!

リアルタイム確認しながら作成可能。
https://regex101.com/

途中の内容を置換

Find:

(内容1)(内容2)(内容3)

Replace:

<abc for="$2">$2$3</abc>

https://mitosuya.net/replace-partial-strings

マルチライン検索が可能。

[\s\S\n]*?

https://qiita.com/birdwatcher/items/dee34a11619b11e1fe81

Discussion