从所有HTML标记中删除特定类

时间:2017-04-17 17:44:26

标签: html regex visual-studio-2015

我有一个HTML页面,我需要删除特定类的所有实例。我找到了StackOverflow文章,但接受的解决方案在Visual Studio 2015中不起作用。本文的链接如下所示:  Using Visual Studio regex to find css name within class attribute

我正在尝试

{class[ \t]*=[ \t]*"[^"]*}orgtemplate_tableentry

但它找不到文字。

1 个答案:

答案 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_tableentryclass包含0 +空格,=,然后是0+字符除了"