我尝试了Is_Number命令,但要么我执行错误,要么我申请不当。 这是我到目前为止所拥有的。 关于如何起诉的任何想法都将受到高度赞赏。
答案 0 :(得分:0)
我建议您使用 to_ascii()功能。
示例:
x="string"
//loop starts here
x=to_ascii(x[i]) //i=counter of your loop, if i=1 it converts "s" to ascii code
if: x>=48 && x<=57 //ascii numbers for 0-9 start at 48 and end at 57
return true;
//loop ends here
实际的事情:
输出: