The string_uint_less
method takes two strings and returns True
if the second is longer than the first. It returns False
otherwise.
string_uint_less( input1, input2 )
Argument | Description |
---|---|
input1
|
(string) The string that acts as the standard for comparison. |
input2
|
(string) The string to compare against the first string. |
(Boolean).
|