Compare strings in exclusive split

3
What is the best way to compare two strings in a exclusive split? What will be the result of Contains('Boekhandel Mulder','Mulder') TRUE or FALSE ? I get FALSE but expected TRUE. Thanks!
asked
2 answers
6

You are right, it should return true. Did you use this exact example? Perhaps your strings aren't the same because of case sensitivity. For example:

contains(toLowerCase('boekhandel Mulder'), toLowerCase('mulder'))

Will return true

but

contains('boekhandel Mulder', 'mulder')

Will return false because of the capital M in Mulder.

By the way, our documentation pages will soon be updated with more info on microflow expressions.

answered
-2

Boekhandel Mulder = Mulder ? This will definitely return 'false'

answered