mimuhrin
(Mimuhrin)
1
Hi community!
I have a 2 strings which are:
name1: Christopher (Chris) Holloway
name2: Christopher Holloway
I want to check if name1 contains name2.
I tried doing this:
but it always returns false, but clearly you can see name1 contains name2. Any help would be much appreciated.
Thanks in advance! 
Yoichi
(Yoichi)
2
Hi,
Can you try the following condition?
name2.Split({" "c}).All(Function(s) name1.Split({" "c}).Contains(s))
Regards,
mimuhrin
(Mimuhrin)
3
Wow! worked really well! Thanks for this 
1 Like
system
(system)
Closed
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.