gpt4 book ai didi

.Match().Value 和 Match().ToString() 之间的 c# regex 区别

转载 作者:行者123 更新时间:2023-11-30 14:13:22 26 4
gpt4 key购买 nike

我有以下代码:

Match matcher = new Regex("[0-9]+.[0-9]+.[0-9]+").Match("12/02/1994");

if (matcher.Success)
{
string matchedString1 = matcher.Value;
string matchedString2 = matcher.ToString();
}

在这种情况下,matchedString1matchedString2 包含相同的值 "12/02/1994"matcher.Valuematcher.ToString() 是否总是为任何正则表达式返回相同的结果?

最佳答案

Match 类派生自 Group 类,而这个派生自 Capture类。

Capture 类使用以下代码覆盖 ToString() 方法:

[__DynamicallyInvokable, TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
public override string ToString()
{
return this.Value;
}

所以,是的,它是相同的值。

关于.Match().Value 和 Match().ToString() 之间的 c# regex 区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14409193/

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