我正在 Xcode 中寻找一个正则表达式替换,它允许我之前删除所有空格和换行符];
我不得不承认我与正则表达式不一致。我做到了\S(\s+)];
……但Xcode似乎没有发现任何出现];
在新行上的情况。
这是我要修复的两个示例:
[self methodWithBlock:^(){
} ];
[self methodWithBlock:^(){
}
];
对此:
[self methodWithBlock:^(){
}];
那些格式错误的块是学习 unrustify 的结果。;)