LoginSignup
0
0

More than 3 years have passed since last update.

VisualStudioCodeで特定の文字から特定の文字までの情報を書き換える方法

Last updated at Posted at 2021-02-06

View > Search から検索を開き .* を選択する。

スクリーンショット 2021-02-06 14.25.10.png

下記を正規表現で置き換えたい

 <p>abcdefg</p>

a~z,A~Zの文字、数字の正規表現

[a-zA-Z0-9]

aから始まってzで終わる3桁以上の文字列

a.+z

上記を組み合わせる

<p>[a-zA-Z0-9].*</p>

上記で<p>abcdefg</p>をReplaceで入れた好きな文字等に変更できる。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0