Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有大约 1,300 个实例
#import <xxxxx/ClassName.h>
我想用
#import "ClassName.h"
我注意到如果我使用 cmd-shift-f 菜单,我可以转到替换 > 正则表达式。ClassName 不是唯一的,xxxxx 始终相同。
将替换所有这些的正则表达式是什么?
作为查找字符串:
#import <xxxxx/(\w+\.h)>
作为替换字符串:
#import "\1"
注意:Xcode 6中的行为发生了变化。语法被替换为. 另请记住,换行符现在可以在正则表达式中匹配,因此请确保在执行全部替换之前略过。\1$1
\1
$1