input string is - Asbatankvoy + CAPS Rider Clauses (May)
I need to extract whatever is before + andi used this - “(.+)(?=+ )” in matches activity but getting error
Hi,
You need to escape “+” because of special character in regex like the following.
“(.+)(?=\+ )”
Regards,