从 Querystring 将匹配项添加到字典
我的查询 ="RecordFiles/findrecords/$filter=userid eq 8w4W4E and recordid eq 1catf2deb-4wdx-450c-97cd-6rre331d4a6ec";
字符串 myRegexQueryPattern =@"^(RecordFiles/findrecords/\$filter=userid eq)\s(?<userid>\S+)((\s(and recordid eq)\s(?<recordid>\w+))|())";
Dictionary<string, string> dataDictionary;
Regex myregx = new Regex(myRegexQueryPattern, RegexOptions.IgnoreCase);
bool status= AddToDictionary(myQuery, myregx, out dataDictionary);
但是当我运行这段代码时,我只得到了 recordid 的第一部分并且正在跳过剩余的部分。
实际结果
记录ID=1catf2deb
预期结果 这里我的字典应该包含
记录ID = 1catf2deb-4wdx-450c-97cd-6rre331d4a6ec
有人可以帮我得到预期的结果吗?我的代码的哪一部分是错误的,我该如何更正我的代码以获得预期的结果
public static bool AddToDictionary(string query, Regex regex, out Dictionary<string, string> data)
{
Match match = regex.Match(query);
bool status = false;
string[] groupNames = regex.GetGroupNames();
data = new Dictionary<string, string>();
if (match.Success)
{
foreach (var groupName in groupNames)
{
data.Add(groupName, match.Groups[groupName].Value);
}
status = true;
}
return status;
}