๐ฐspecial characters
๐ง under construction
JS โฉ value โฉ object โฉ regex โฉ pattern โฉ special characters
.
- any character ๐ character set.?
- repeat 0 ~ 1, or lazy.+
- repeat 1 ~ โ.*
- repeat 0 ~ โ.^
- beginning anchor, or invert a set ๐ character set.$
- end anchor.\
- escape./
- delimiter for regex in JS, for example:/abc/
.()
- group.[]
- ranges, alternation, ๐ character set.{}
- times to repeat.|
- alternation (or).
Last updated
Was this helpful?