用于编辑的 File.Regex 表达式
我真的是 file.regex 的初学者,所以如果有人解释我如何搜索这个表达式。
this.label1.Text = "Version 1.1.1.Beta";
我将如何在 file.regex 正则表达式中写这个?
我想通过 file.regex 搜索它,然后通过 tfsbuild 在此处设置新值。所以请帮助我,因为我真的很害怕,找不到出路。
i am really a beginner in file.regex so if someone explain me how can i search for this expression.
this.label1.Text = "Version 1.1.1.Beta";
How will i write this in file.regex regular expression ??
i want to search this through file.regex and then set new value here through tfsbuild. so please help me as i am really freaked out and cannot find my way out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要将文件
file
中的字符串1.1.1.Beta
替换为字符串11.1.2.Beta
,您可以使用 sed:To replace the string
1.1.1.Beta
with string11.1.2.Beta
in filefile
you could use sed: