How can I Extract phrase between character with regex

Hello to everyone, thanks to read and help me

I’ve this summary received from Google Calendar

Screenshot_6

I need extract ONLY the name between ( ) character’s

THANKS a lot

\((?<name>(?:.|/s)+)\)
1 Like

Work perfect :disguised_face:

Thanks I found a big post with some cases,

I’m trying red accents with this

((?[\s\w]|[à-ü]|[À-Ü]+))

But not working

Thanks agian

I resolved it

((?([\s\w]|[à-ü]|[À-Ü])+))

ThaNKS

2 Likes