Regex manipulation

I have a string that can be

→ ABCDE (2342)
→ CSPL (23434)
->QWEQWW (56546)

I want output as just the words
ABCDE
CSPL
QWEQWW
What should be the regex

Hi @Gaurav07

try this

[A-Z].

Thanks
Ashwin S

@Gaurav07,

Please find the attached sample workflow for your requirement.

Please like and mark it as solution if your requirement met.

Regards,
AnilRegexGaurav07.zip (11.1 KB)

@Gaurav07
Use \w+ so it will takes only words from the string.