用于编辑的 File.Regex 表达式

发布于 2024-11-05 14:11:09 字数 228 浏览 1 评论 0原文

我真的是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掩于岁月 2024-11-12 14:11:09

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

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

To replace the string 1.1.1.Beta with string 11.1.2.Beta in file file you could use sed:

sed -i file 's/\(this\.label1\.Text = "Version      \)1.1.1.Beta\(";\)/\11.1.2.Beta\2/'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文