On Sat, Jul 28, 2018 at 1:54 AM ToddAndMargo <toddandma...@zoho.com <mailto:toddandma...@zoho.com>> wrote:

    Hi All,

    Why does this work:

         if $CurlStr.chars > 200 {

    But this does not?

         if $CurlStr.chars gt 200 {

    79 was not larger than 200 ????


    Many thanks,
    -T


On 07/27/2018 10:57 PM, Brandon Allbery wrote:
> is numeric comparison: (79 > 200) is false. gt is string comparison: ("79" > "200") is true because "7" is lexically larger than "2".

so "7" was larger than "2".

mumble, mumble


Thank you for the second pair of eyes!

-T

Reply via email to