I know that the character ^
finds a character at the start of a line, but I need to delete a left parentheses at the start of many lines. When I try to do a replace, I receive the following error:
Unmatched marking parenthesis ( or \(. The error occurred while parsing the regular expression: '^(>>>HERE>>>'.
What is the correct syntax when searching for the character (
at the start of a line?
You need to escape the parenthesis with a slash, \(