That may depend more on the comparison function you are using.
for example:
"23 " == 23 returns true, and 18 <= " 0 " returns false.
gt, ge, lt, le, eq, ne are the string comparators
>, >=, <, <=, =, != are the corresponding numeric comparators, which will do their best to convert...