如何编写一个raptor流程图,在字符串中搜索数字,一旦找到则返回true语句

时间:2014-04-25 16:49:26

标签: flowchart

我尝试了Is_Number命令,但要么我执行错误,要么我申请不当。 这是我到目前为止所拥有的。 关于如何起诉的任何想法都将受到高度赞赏。

1 个答案:

答案 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

实际的事情:
enter image description here

输出:
enter image description here