豪齐特,
我需要以下帮助。
我需要在字符串中查找标签。这些标签以 开头{{
和结尾}}
,我收到的字符串中会有多个标签。
到目前为止我有这个,但它没有找到任何匹配,我在这里错过了什么?
List<string> list = new List<string>();
string pattern = "{{*}}";
Regex r = new Regex(pattern, RegexOptions.IgnoreCase);
Match m = r.Match(text);
while (m.Success)
{
list.Add(m.Groups[0].Value);
m = m.NextMatch();
}
return list;
甚至尝试过string pattern = "{{[A-Za-z0-9]}}";
thanx
PS。我对正则表达式几乎一无所知。