substringCiLT
|
The substringCiLT function performs a case-insensitive comparison between the
two substrings {string1 start1 end1} and {string2 start2 end2}. If the first substring
is lesser than the second substring
true is returned; otherwise, false is returned.
Usage Use the substringCiLT function to compare if the first substring is lesser than
the second substring
without considering the case the of the Strings (case-insensitive).
Therefore the Strings "Hello" and "HELLO" would compare equal.
(substringCiLT string1 start1 end1 string2 start2 end2) (substringCiLT text1 start1 end1 text2 start2 end2) Returns true if the first substring is lesser than the second substring, and false if
second substring is equal or greater than the first substring.
Expression:
Arguments
Name
Type
Description Argument: string1 String or Text
The first String or Text to be compared Argument: start1 Integer
The beginning position of the first String or Text to be compared Argument: end1 Integer
The ending position of the first String or Text to be compared Argument: string2 String or Text
The second String or Text to be compared Argument: start2 Integer
The beginning position of the second String or Text to be compared Argument: end2 Integer
The ending position of the second String or Text to be compared
Returns:
Here are a number of links to Lambda coding examples which contain this instruction in various use cases.
Here are the links to the data types of the function arguments.
String | Boolean |
Here are also a number of links to functions having arguments with any of these data types.
Analytic Information Server (AIS)AIS Component Systems
|