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