gpt4 book ai didi

C# Regex 帮助获取多个值

转载 作者:行者123 更新时间:2023-11-30 21:18:59 24 4
gpt4 key购买 nike

需要一点帮助使用正则表达式从字符串中获取多个值。我可以从字符串中获取单个值,但不能获取多个值。

我有这个字符串:

[message:USERPIN]Message to send to the user

我需要提取 USERPIN 和消息。我知道如何获取密码:

 Match sendMessage = Regex.Match(message, "\\[message:[A-Z1-9]{5}\\]");

只是不确定如何同时获取这两个值。

感谢您的帮助。

最佳答案

使用命名组方便访问:

Match sendMessage = Regex.Match(message,
@"\[message:(?<userpin>[A-Z1-9]{5})\](?<message>.+)");

string pin = sendMessage.Groups["userpin"].Value;
string message = sendMessage.Groups["message"].Value;

关于C# Regex 帮助获取多个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3993058/

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