Xcode使用正则表达式查找多行

时间:2013-01-25 13:24:37

标签: objective-c regex xcode cocoa replace

我的代码中有很多地方都有以下几行。我想立刻找到所有这些并用新评论替换每个块。但是,我一次只能搜索一行。但我没有得到如何在我的正则表达式中包含新行来搜索请帮助。

// Block Solver
// We develop a block solver that includes the joint limit.
// when the mass has poor distribution (leading to large torques about..
//

提前致谢

1 个答案:

答案 0 :(得分:4)

搜索:

^(?://.*\n?)+

并全部取而代之。

这将找到以//开头的所有行。