c# – 使用Regex从AssemblyInfo.cs文件中检索程序集版本

前端之家收集整理的这篇文章主要介绍了c# – 使用Regex从AssemblyInfo.cs文件中检索程序集版本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在AssemblyInfo.cs文件中有这个字符串:[assembly:AssemblyVersion(“1.0.0.1”)],我试图逐个检索其中的数字,每个都是以下结构中的变量.
static struct Version
{
  public static int Major,Minor,Build,Revision;
}

我正在使用此模式尝试检索数字:

string VersionPattern = @"\[assembly\: AssemblyVersion\(""(\d{1,})\.(\d{1,})""\)\]";

但是,当我使用此代码时,结果不是预期的,而是显示完整的字符串,就好像它是真正的匹配而不是组中的每个数字.

Match match = new Regex(VersionPattern).Match(this.mContents);
if (match.Success)
{
  bool success = int.TryParse(match.Groups[0].Value,Version.Major);
  ...
}

在这种情况下,this.mContents是从文件读取的整个文本和match.Groups [0] .Value应该是AssemblyVersion中的“1”

我的问题是用Regex逐个检索这些数字.

这个小工具是每次Visual Studio构建它时增加应用程序版本,我知道有很多工具可以做到这一点.

解决方法

第一组显示完全匹配.您的版本号在1-4组中:
int.TryParse(match.Groups[1].Value,...)
int.TryParse(match.Groups[2].Value,...)
int.TryParse(match.Groups[3].Value,...)
int.TryParse(match.Groups[4].Value,...)
原文链接:https://www.f2er.com/csharp/243195.html

猜你在找的C#相关文章