snowingnow
Programmer
What function could i use to convert a string to integer, such as a truncated string is "33" and I would like to conver to integer as 33. Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
% set s " 33 "
33
% set n [expr $s*2]
66