RegEx - 仅限获取角色

时间:2012-07-17 17:24:38

标签: regex

  

可能重复:
  Regular Expression to match only alphabetic characters

我有这个HTML代码,我想只获取字符(没有数字):

<h1 style="color:#fff;">8 Test Name</h1>

我用这个RegExp尝试了它:<h1.*?>(^[a-zA-Z]*$)<\/h1> 我甚至试过这个:<h1.*?>(\d*)<\/h1>

在这两种情况下我都会收到错误:没有匹配。检查DELIMITER碰撞。使用此工具:http://myregextester.com/index.php

只有<h1.*?>(.*?)<\/h1>有效。

我的错误在哪里?

感谢。

0 个答案:

没有答案