Quote:
Originally Posted by iron_sigil
which code do I have to use to eliminate for example [a], [b], [c], etc always inside square brackets?
|
Search: \[[a-z]\]
The
Blue section tells Regex to "look for single lowercase a through z".
Note: [] are special characters in Regex to tell it "look for these specific characters in this position".
Red parts say "look for a left bracket" + "look for a right bracket".
Note: Because [] are special characters, you have to use the \ before them in order to find the ACTUAL bracket characters in your text.
Note 2: Other special characters in Regex are
?+.{}\.