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 342
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