I have an issue with writing my regex For some reason it always returns same match instead of multiple
I am trying to isolate the Client information starting with "Client Full Name" and finishing when new "Client Full Name" starts or is end of string
My regex so far is:
((?:Client Full Name)([\s\S]*)?Client Full Name)*
If you solve that, please write down the explanation for me so I do learn