Command Group
Regex
Comments
Replace all text before a character with:
.+[\X)
^[#;].*
X = the character to replace
. # is the word or character to remove; ; is a second one. .* is wildcard for everything after it
Replace all text before a character with:
.+[\X)
^[#;].*
X = the character to replace
. # is the word or character to remove; ; is a second one. .* is wildcard for everything after it