LoginSignup
1
4

More than 3 years have passed since last update.

【VisualStudio】VisualStudioでワイルドカード検索

Last updated at Posted at 2019-04-17

検索と置換の
検索オプションで「正規表現を使用する」にチェック入れる

ワイルドカード検索

検索する文字列
<summary>.*</summary>

ワイルドカード部分の文字を残して置換したい場合

検索する文字列
<summary>(.*)</summary>
置換後の文字列
<remarks>$1</remarks>

上記の場合だと

<summary>サンプル</summary>

のような記載が

<remarks>サンプル</remarks>

に置換されます

1
4
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
1
4