Regular Expressions
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