需要一些帮助与RegEx查询
本文关键字:RegEx 查询 帮助 | 更新日期: 2023-09-27 18:09:47
给定以下字符串:
someObject.SomeFunction.parameters[0] = new Thing('ValueName', 0);
我如何得到只是ValueName
值?-使用c#
您可以使用String.Substring
方法或使用regex:
(?<=')(?:'''|[^'])*(?=')
例如:
Regex.Match(input, @"(?<=')(?:'''|[^'])*(?=')").Value