0

我有以下用于查找类的正则表达式:

about_class = about_key.match(/^(.+)_id$/)[1]

上面的表达式将匹配 onuser_idcontact_id

我想排除字符串author_id

如何更新要排除的表达式author_id

4

1 回答 1

1

添加负前瞻:

/^(?!author_id$)(\w+)_id$/

> "foo_id".match(/^(?!author_id$)(\w+)_id$/)
["foo_id", "foo"]
> "author_id".match(/^(?!author_id$)(\w+)_id$/)
null
于 2013-09-09T10:58:52.123 回答