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 ).
method int str.int
Return value
The result value of the according type.
uint( str )
Convert str to uint => uint( str ).
method uint str.uint
float( str )
Convert str to float => float( str ).
method float str.float
long( str )
Convert str to long => long( str ).
method long str.long
double( str )
Convert str to double => double( str ).
method double str.double
Related links | Source |