  strtol
  Builtin Function



      SSyynnooppssiiss
        String to integer conversion.

      SSyynnttaaxx
        strtol ( _S_T_R , _B_A_S_E )

      DDeessccrriippttiioonn
        The strtol functions converts its argument, _S_T_R, from string
        class to numeric class. Strtol stands for STRing TO Long-int.

        The second (optional) argument _B_A_S_E, specifies the conversion
        base. Valid values for _B_A_S_E are between 2 and 32. _B_A_S_E defaults
        to 10 if not specified.

        Strtol will return a NaN (Not a Number) if it cannot recognize a
        string, or an element of a string matrix, as a number.













































