Hello to everyone, thanks to read and help me
I’ve this summary received from Google Calendar
I need extract ONLY the name between ( ) character’s
THANKS a lot
Hello to everyone, thanks to read and help me
I’ve this summary received from Google Calendar
I need extract ONLY the name between ( ) character’s
THANKS a lot
\((?<name>(?:.|/s)+)\)
Work perfect
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