- Ctrl + H
- Encontre o que:
^[^(]+\K\([^)]+\)
- Substituir por:
LEAVE EMPTY
- check Embrulhe
- verificar expressão regular
- Substituir todos
Explicação:
^ : begining of line
[^(]+ : 1 or more character that is not an open parenthesis
\K : forget all we have seen until this position
\( : an open parenthesis
[^)]+ : 1 or more character that is not a close parenthesis
\) : a close parenthesis
Resultado para o exemplo dado:
CustomerAccount, CustomerName, Address, (Amount)