Useful Regex Patterns

# matches any character (except for line terminators)
.*?

# matches any characters in front of symbol
\(symbol)(.*)

Last updated