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