Regular Expression basics
Category: /knowledge /developmentTags: development
x: the literal character x 字符
^: start of the line
$: end of the line
.: any single character
\x: escape the special char of x, i.e. [].^$
x: the literal character x 字符
^: start of the line
$: end of the line
.: any single character
\x: escape the special char of x, i.e. [].^$