@herminia_bruen
To delete brackets after a special letter using regex, you can use the following regex pattern:
1
|
/([a-zA-Z])([^()]*)/ |
Explanation of the regex pattern:
By using this regex pattern, you can match and remove the brackets that appear after a special letter in a string.