参考资料库

Regex 正则速查表

匹配文本、分组、锚点和字符类的正则语法提醒。

Word boundary

参考: Match a whole word.

\bword\b

Capture group

参考: Capture date parts.

(\d{4})-(\d{2})-(\d{2})

Email shape

参考: Match a simple email pattern.

[^\s@]+@[^\s@]+\.[^\s@]+

Global flags

参考: Search globally and ignore case.

/pattern/gi

相关工具