Are there any plans for adding a string compare function? Or is there one already that I don’t know about? Thanks
What exactly do you mean?
@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
User | Count |
---|---|
14 | |
11 | |
9 | |
7 | |
4 |