i am trying to use a regular expression to match all characters that are NOT enclosed within parentheses. I have tried the following, among others, on the file:
[^(\(.*\))]
[^\(+[A-Z]+.+[a-z]\)]
so i am trying to use the "not" operator [^ ] to select all characters that are not within the ( ) characters in the file. Please tell me what i am doing wrong or how i can accomplish this. Thanx
[^(\(.*\))]
[^\(+[A-Z]+.+[a-z]\)]
so i am trying to use the "not" operator [^ ] to select all characters that are not within the ( ) characters in the file. Please tell me what i am doing wrong or how i can accomplish this. Thanx