](\s+)?(?\d+)\s+(?..:..:..:..:..:..:..:..)\-6ren">
gpt4 book ai didi

C# 正则表达式可选命名组

转载 作者:太空宇宙 更新时间:2023-11-03 12:27:47 26 4
gpt4 key购买 nike

我有这个模式:

 string ISLTokenPattern = @"\d+:(\s+)?(?<local>\d+)[-][>](\s+)?(?<remote>\d+)\s+(?<wwn>..:..:..:..:..:..:..:..)\s+\d+\s(?<name>.+)\s+[s][p]:\s+\w+.\w+\s+\w+[:]\s+\d+.\w+\s+((?<trunk>TRUNK))?\s";

我有这个输入:

  1:  0-> 20 10:00:50:eb:1a:11:e3:4e 105 cwymdsae05      sp: 16.000G bw: 64.000G TRUNK QOS CR_RECOV FEC 
2: 21-> 5 10:00:50:eb:1a:12:a1:d3 108 cwymdsae08 sp: 16.000G bw: 96.000G TRUNK QOS CR_RECOV FEC
3: 32-> 0 55:0e:b1:ae:a0:20:0e:46 160 fcr_fd_160 sp: 8.000G bw: 8.000G
4: 33-> 1 55:0e:b1:ae:a0:20:0e:46 160 fcr_fd_160 sp: 8.000G bw: 8.000G
5: 66-> 46 10:00:50:eb:1a:11:e3:4e 105 cwymdsae05 sp: 16.000G bw: 64.000G

在 RegExStorm.Net 上,模式匹配所有 5 行输入。通常,如果某些东西在那里工作,它在 C# 中工作。在我的代码中,匹配在第 3、4 和 5 行失败。如果我取消

((?<trunk>TRUNK))?\s

最后,第 3、4 和 5 行匹配,但第 1 和第 2 行失败。我需要它来匹配两者。作为一种解决方法,我有 2 个模式并测试 2 个匹配项,但我宁愿做一个模式和 1 个测试。

这是进行匹配的代码:

  string ISLTokenPattern = @"\d+:(\s+)?(?<local>\d+)[-][>](\s+)?(?<remote>\d+)\s+(?<wwn>..:..:..:..:..:..:..:..)\s+\d+\s(?<name>.+)\s+[s][p]:\s+\w+.\w+\s+\w+[:]\s+\d+.\w+\s+((?<trunk>TRUNK))?\s";


if (RegexExtensions.TryMatch(out tokenMatch, line, ISLTokenPattern)
{
string local = tokenMatch.Groups["local"].Value;
string remote = tokenMatch.Groups["remote"].Value;
string wwn = tokenMatch.Groups["wwn"].Value.ToUpper();

string name = "";
if (tokenMatch.Groups["name"].Success)
{
name = tokenMatch.Groups["name"].Value;
}

这是我写的 RegExtension 类。这个程序解析文本文件,我做了很多匹配,所以想要一些可以一步匹配和测试成功的东西,以保持代码更清晰。

 public static class RegexExtensions
{
public static bool TryMatch(out Match match, string input, string pattern)
{
match = Regex.Match(input, pattern);
return (match.Success);
}

public static bool TryMatch(out MatchCollection match, string input, string pattern)
{
match = Regex.Matches(input, pattern);
return (match.Count > 0);
}
}

最佳答案

我注意到您当前的正则表达式的一个可能问题是结尾:

\s+((?<trunk>TRUNK))?\s

这匹配正则表达式末尾的一个或多个空格,后跟一个可选的 TRUNK 命名捕获组,再后跟一个单个 空格。请注意,您的日志行没有 TRUNK(后面可能跟其他文本)只有一个空格。但该模式需要两个或更多空间。您使用的解决方案,即删除最后的 \s 可能有效。但是您也可以移动可选捕获组内的空间,即

\s+((?<trunk>TRUNK\s))?

这可以选择匹配 TRUNK 后跟一个空格。您使用哪个取决于您的实际数据。

关于C# 正则表达式可选命名组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43927780/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com