gpt4 book ai didi

C#正则表达式,单引号之间的字符串

转载 作者:可可西里 更新时间:2023-11-01 08:30:41 24 4
gpt4 key购买 nike

string val = "name='40474740-1e40-47ce-aeba-ebd1eb1630c0'";

我想使用正则表达式获取 ' 引号之间的文本。

任何人都可以吗?

最佳答案

应该这样做:

string val = "name='40474740-1e40-47ce-aeba-ebd1eb1630c0'";

Match match = Regex.Match(val, @"'([^']*)");
if (match.Success)
{
string yourValue = match.Groups[1].Value;
Console.WriteLine(yourValue);
}

表达式'([^']*)的解释:

 '    -> find a single quotation mark
( -> start a matching group
[^'] -> match any character that is not a single quotation mark
* -> ...zero or more times
) -> end the matching group

关于C#正则表达式,单引号之间的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5662834/

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