This function compares two alphanumeric strings by comparing the coding values of each character.
It returns "true" if the first string is strictly lower than the second.
Parameters
String |
stringVal1 |
Alphanumeric string to compare |
Mandatory |
String |
stringVal2 |
Alphanumeric string to compare |
Mandatory |
For example
foo < bar: ${ hardisCore.isLexicographicLtString("foo", "bar")} ?