gpt4 book ai didi

c# - 按组名匹配正则表达式中的组的更好方法是什么

转载 作者:太空宇宙 更新时间:2023-11-03 11:16:50 25 4
gpt4 key购买 nike

我已阅读 How do I get the name of captured groups in a C# Regex?How do I access named capturing groups in a .NET Regex?尝试了解如何在正则表达式中查找匹配组的结果。

我还阅读了位于 http://msdn.microsoft.com/en-us/library/30wbz966.aspx 的 MSDN 中的所有内容

令我感到奇怪的是 C#(或 .NET)似乎是唯一的正则表达式实现,它使您迭代组以找到匹配的组(特别是如果您需要名称),而且事实是名称不与组结果一起存储。例如,PHP 和 Python 将为您提供匹配的组名,作为 RegEx 匹配结果的一部分。

我必须迭代组并检查是否匹配,并且我必须保留我自己的组名称的列表,因为这些名称不在结果中。

这是我要演示的代码:

public class Tokenizer
{
private Dictionary<string, string> tokens;

private Regex re;

public Tokenizer()
{
tokens = new Dictionary<string, string>();
tokens["NUMBER"] = @"\d+(\.\d*)?"; // Integer or decimal number
tokens["STRING"] = @""".*"""; // String
tokens["COMMENT"] = @";.*"; // Comment
tokens["COMMAND"] = @"[A-Za-z]+"; // Identifiers
tokens["NEWLINE"] = @"\n"; // Line endings
tokens["SKIP"] = @"[ \t]"; // Skip over spaces and tabs

List<string> token_regex = new List<string>();
foreach (KeyValuePair<string, string> pair in tokens)
{
token_regex.Add(String.Format("(?<{0}>{1})", pair.Key, pair.Value));
}
string tok_regex = String.Join("|", token_regex);

re = new Regex(tok_regex);
}

public List<Token> parse(string pSource)
{
List<Token> tokens = new List<Token>();

Match get_token = re.Match(pSource);
while (get_token.Success)
{
foreach (string gname in this.tokens.Keys)
{
Group group = get_token.Groups[gname];
if (group.Success)
{
tokens.Add(new Token(gname, get_token.Groups[gname].Value));
break;
}
}

get_token = get_token.NextMatch();
}
return tokens;
}
}

行内

foreach (string gname in this.tokens.Keys)

这不是必须的,但确实是。

有没有办法不用遍历所有的组就可以找到匹配的组和它的名字?

编辑:比较实现。这是我为 Python 实现编写的相同代码。

class xTokenizer(object):
"""
xTokenizer converts a text source code file into a collection of xToken objects.
"""

TOKENS = [
('NUMBER', r'\d+(\.\d*)?'), # Integer or decimal number
('STRING', r'".*"'), # String
('COMMENT', r';.*'), # Comment
('VAR', r':[A-Za-z]+'), # Variables
('COMMAND', r'[A-Za-z]+'), # Identifiers
('OP', r'[+*\/\-]'), # Arithmetic operators
('NEWLINE', r'\n'), # Line endings
('SKIP', r'[ \t]'), # Skip over spaces and tabs
('SLIST', r'\['), # Start a list of commands
('ELIST', r'\]'), # End a list of commands
('SARRAY', r'\{'), # Start an array
('EARRAY', r'\}'), # End end an array
]

def __init__(self,tokens=None):
"""
Constructor
Args:
tokens - key/pair of regular expressions used to match tokens.
"""
if tokens is None:
tokens = self.TOKENS
self.tokens = tokens
self.tok_regex = '|'.join('(?P<%s>%s)' % pair for pair in tokens)
pass

def parse(self,source):
"""
Converts the source code into a list of xToken objects.
Args:
sources - The source code as a string.
Returns:
list of xToken objects.
"""
get_token = re.compile(self.tok_regex).match
line = 1
pos = line_start = 0
mo = get_token(source)
result = []
while mo is not None:
typ = mo.lastgroup
if typ == 'NEWLINE':
line_start = pos
line += 1
elif typ != 'SKIP':
val = mo.group(typ)
result.append(xToken(typ, val, line, mo.start()-line_start))
pos = mo.end()
mo = get_token(source, pos)
if pos != len(source):
raise xParserError('Unexpected character %r on line %d' %(source[pos], line))
return result

如您所见,Python 不需要您迭代组,类似的事情可以在 PHP 中完成,我假设是 Java。

最佳答案

无需维护单独的命名组列表。使用 Regex.GetGroupNames method相反。

您的代码将类似于此:

foreach (string gname in re.GetGroupNames())
{
Group group = get_token.Groups[gname];
if (group.Success)
{
// your code
}
}

也就是说,请注意 MSDN 页面上的这条注释:

Even if capturing groups are not explicitly named, they are automatically assigned numerical names (1, 2, 3, and so on).

考虑到这一点,您应该为所有组命名,或者过滤掉数字组名称。您可以使用某些 LINQ 或额外检查 !Char.IsNumber(gname[0]) 来检查组名的第一个字符,假设任何此类组都是无效的.或者,您也可以使用 int.TryParse 方法。

关于c# - 按组名匹配正则表达式中的组的更好方法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12439977/

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