代码之家  ›  专栏  ›  技术社区  ›  planetp

如何从类中排除某些字符?

  •  28
  • planetp  · 技术社区  · 14 年前

    假设我想匹配一个“单词”字符( \w ,但不包括“uu”,或匹配空白字符( \s ,但不包括“\t”。我该怎么做?

    1 回复  |  直到 14 年前
        1
  •  42
  •   ysth    14 年前

    使用否定类,包括\w或\s。

    /[^\W_]/  # anything that's not a non-word character and not _
    /[^\S\t]/ # anything that's not a non-space character and not \t
    
    推荐文章