我有一个HTML页面,我需要删除特定类的所有实例。我找到了StackOverflow文章,但接受的解决方案在Visual Studio 2015中不起作用。本文的链接如下所示: Using Visual Studio regex to find css name within class attribute
我正在尝试
{class[ \t]*=[ \t]*"[^"]*}orgtemplate_tableentry
但它找不到文字。
答案 0 :(得分:1)
VS2010不支持正常的正则表达式语法。现在,您需要将Eigen::PermutationMatrix<Eigen::Dynamic, Eigen::Dynamic >::PermutationMatrix P(n);
P.setIdentity();
P.applyTranspositionOnTheRight(j, i);
替换为括号以形成capturing group,稍后您可以使用{...}
反向引用(其中$n
是组ID)。
所以,使用
n
并替换为(class\s*=\s*"[^"]*)orgtemplate_tableentry
以移除位于$1
之后的orgtemplate_tableentry
,class
包含0 +空格,=
,然后是0+字符除了"
。