我正在尋找一種方法來「查找並替換(ctrl + shfit + f)」,不僅用於匹配連續字符,而且字長也是。sublime 2_僅當目標字和長度匹配時查找並替換
例如代碼段像這樣
int a;
int b;
int c;
printf("I will be replaced as well cos I contain int!!");
其中:詮釋
替換:浮動
將導致
float a;
float b;
float c;
prfloatf("I will be replaced as well cos I contain int!!");
要從此防止發生,我能想到的添加長度條件。只要解決我的問題,除了我的想法將受到歡迎:-) 謝謝。
謝謝你一百萬的快速援助和演示!有用!我是新來的正則表達式,但我想我需要經常使用。我記得javac.sublime-build中的類似表達式。目前,我將首先使用它:-) – 2014-10-27 06:11:31
@EvanS youre welcome :) – vks 2014-10-27 06:12:04