使用正则表达式分配变量

问题描述 投票:3回答:3

我正在寻找一种方法来使用C ++ .NET在正则表达式中为模式分配变量

String^ speed;
String^ size;

“命令SPEED = [速度] SIZE = [大小]”

现在我正在使用IndexOf()和Substring(),但它非常难看

.net regex string parsing
3个回答
3
投票
String^ speed; String^ size;
Match m;
Regex theregex = new Regex (
  "SPEED=(?<speed>(.*?)) SIZE=(?<size>(.*?)) ",
  RegexOptions::ExplicitCapture);
m = theregex.Match (yourinputstring);
if (m.Success)
{
  if (m.Groups["speed"].Success)
    speed = m.Groups["speed"].Value;
  if (m.Groups["size"].Success)
    size = m.Groups["size"].Value;
}
else
  throw new FormatException ("Input options not recognized");

对语法错误表示歉意,我现在没有编译器可以测试。


2
投票

如果我正确理解您的问题,您正在寻找捕获组。我不熟悉.net api,但在java中看起来像这样:

Pattern pattern = Pattern.compile("command SPEED=(\d+) SIZE=(\d+)");
Matcher matcher = pattern.matcher(inputStr);
if (matcher.find()) {
  speed = matcher.group(1);
  size = matcher.group(2);
}

上面的正则表达式模式中有两个捕获组,由两组括号指定。在java中,这些必须由数字引用,但在某些其他语言中,您可以通过名称引用它们。


0
投票

如果将所有变量放在一个类中,则可以使用反射来迭代其字段,获取其名称和值并将它们插入到字符串中。

给定一个名为InputArgs的类的实例:

foreach (FieldInfo f in typeof(InputArgs).GetFields()) {
    string = Regex.replace("\\[" + f.Name + "\\]",
        f.GetValue(InputArgs).ToString());
}
© www.soinside.com 2019 - 2024. All rights reserved.