Regular Expressions

From rbachwiki
Revision as of 00:35, 3 April 2019 by Bacchas (talk | contribs) (Created page with "==Regular Expression== '''literal value''' /my/ #myfile #amy #ammy ===Matches any character === . === Character Classes=== matches [abc] can be used to match any specific...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Regular Expression

literal value

/my/
#myfile
#amy
#ammy

Matches any character

.

Character Classes

matches [abc] can be used to match any specific set of characters

negate when its in the bracket

[^eo]
^ # beginning of the line
$ # end of the line