File.Regex Expression用于编辑

时间:2011-05-06 09:25:55

标签: regex csh

我真的是file.regex的初学者,所以如果有人解释我怎么能搜索这个表达式。

this.label1.Text = "Version      1.1.1.Beta";

我将如何在file.regex正则表达式中编写这个?

我想通过file.regex搜索这个,然后在这里通过tfsbuild设置新值。所以请帮助我,因为我真的吓坏了,找不到出路。

1 个答案:

答案 0 :(得分:0)

要使用文件1.1.1.Beta中的字符串11.1.2.Beta替换字符串file,您可以使用sed:

sed -i file 's/\(this\.label1\.Text = "Version      \)1.1.1.Beta\(";\)/\11.1.2.Beta\2/'