如何在 C# 中使用正则表达式检索选定的文本?
Posted
技术标签:
【中文标题】如何在 C# 中使用正则表达式检索选定的文本?【英文标题】:How do you retrieve selected text using Regex in C#? 【发布时间】:2010-09-05 18:37:33 【问题描述】:如何在 C# 中使用 Regex 检索选定的文本?
我正在寻找与此 Perl 代码等效的 C# 代码:
$indexVal = 0;
if($string =~ /Index: (\d*)/)$indexVal = $1;
【问题讨论】:
【参考方案1】:int indexVal = 0;
Regex re = new Regex(@"Index: (\d*)")
Match m = re.Match(s)
if(m.Success)
indexVal = int.TryParse(m.Groups[1].toString());
我可能把组号弄错了,但你应该可以从这里弄清楚。
【讨论】:
【参考方案2】:你会想要利用匹配的组,所以像...
Regex MagicRegex = new Regex(RegexExpressionString);
Match RegexMatch;
string CapturedResults;
RegexMatch = MagicRegex.Match(SourceDataString);
CapturedResults = RegexMatch.Groups[1].Value;
【讨论】:
【参考方案3】:我认为 Patrick 做到了这一点——我唯一的建议是记住命名的正则表达式组也存在,因此您不必使用数组索引号。
Regex.Match(s, @"Index (?<num>\d*)").Groups["num"].Value
虽然opinions vary...
【讨论】:
【参考方案4】:那就是
int indexVal = 0;
Regex re = new Regex(@"Index: (\d*)");
Match m = re.Match(s);
if (m.Success)
indexVal = m.Groups[1].Index;
你也可以命名你的组(这里我也跳过了正则表达式的编译)
int indexVal = 0;
Match m2 = Regex.Match(s, @"Index: (?<myIndex>\d*)");
if (m2.Success)
indexVal = m2.Groups["myIndex"].Index;
【讨论】:
【参考方案5】:int indexVal = 0;
Regex re = new Regex.Match(s, @"(<?=Index: )(\d*)");
if(re.Success)
indexVal = Convert.ToInt32(re.Value);
【讨论】:
以上是关于如何在 C# 中使用正则表达式检索选定的文本?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用正则表达式(或 C# 函数)在一个变量中剪切 TEXT MESSAGE 并从此文本中剪切第二个变量 USERNAME?