标签: c# .net regex
给出以下字符串:
someObject.SomeFunction.parameters[0] = new Thing('ValueName', 0);
如何获得ValueName值? - 使用C#
ValueName
答案 0 :(得分:0)
您可以使用String.Substring方法或使用正则表达式:
String.Substring
(?<=')(?:\\'|[^'])*(?=')
e.g:
Regex.Match(input, @"(?<=')(?:\\'|[^'])*(?=')").Value