LoginSignup
0
2

More than 5 years have passed since last update.

Sublime Text3 | 正規表現 > #define[space][tab]XXXや#define[space][space]XXXや#define[tab][tab]XXXや#define[tab][space]XXX を探す

Posted at
動作環境
Windows 7 Pro (32bit)
Sublime Text 3 Build 3143 

希望処理

Find:にて以下のいずれかをヘッダーファイル*.hにて見つける。

#define     DELTA_FLYER // all space
#define     DELTA_FLYER // space + tab
#define     DELTA_FLYER // tab + space
#define     DELTA_FLYER // tab + tab

方法

Regular Expressionの機能をONにして(Alt+R)、以下で検索する。

#define *\t* *DELTA_FLYER

参考

正規表現 メタ文字一覧 @ メガソフト株式会社

0
2
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
2