嗨,我需要在一个大字符串中找到所有匹配项,我发现了这个问题
这看起来很完美!唯一的问题它不起作用。这个问题和我的不同之处在于,我需要使用 [[\w+]],而不是使用 #\w+#。这是我的代码(sb 是我的大字符串):
Regex reg = new Regex(@"[[\w+]]");
foreach (Match m in reg.Matches(sb.ToString()))
{
RenderHtmlRecursive(helper, sb, path, m.Value);
}
当我运行它时,我得到 1 个匹配项:) 但值为 (m.Value): "t]"
sb 是(暂时的小文本):卡片卡片 [[RegisterText]]
有任何想法吗?