I want to isolate all CLIENT.xxxx
in this string:
CLIENT.TEST,Toto.test,Test.Test,CLIENT.NOM,
Zozo.zaza,CLIENT.Machin,Truc.Chose,Truc.tralala,
I use this regular expression: CLIENT\..*[\,\)]
. But, as you can see at https://regex101.com/r/LKD50F/1 not only CLIENT.xxxx match the expression but also Toto.test, Test.test, and so on.
How can I modify my regexp to match only CLIENT.xxxx ?