type( str )
- method int str.int
- method uint str.uint
- method float str.float
- method long str.long
- method double str.double
Converting string to other types. Convert str to int => int( str ).
Return value
The result value of the according type.
uint( str )
Convert str to uint => uint( str ).
float( str )
Convert str to float => float( str ).
long( str )
Convert str to long => long( str ).
double( str )
Convert str to double => double( str ).
Related links | Source |