Are there any plans for adding a string compa...

Are there any plans for adding a string compare function? Or is there one already that I don’t know about? Thanks

0 7 338
7 REPLIES 7

What exactly do you mean?

Harry2
New Member

@John_Gardner You can use the “=” operator to compare string values. If this is not what you want, could you elaborate please?

How about CONTAINS?

in() performs an exact, case-sensitive equality check. contains() and = are case-insensitive. contains() matches if operand 2 occurs anywhere in operand 1. = matches if either operand is blank!

Use in().

I am looking for a function that does more than “=”

Something more like a “<” or “>” but for strings.

It’s more about trying to sort strings than check for a string inside a string

@John_Gardner taking about length of the string? Orderby and len

Top Labels in this Space