Appinventor 测试空字符串
Appinventor test empty string
测试字符串是否为空的最佳方法是什么?
我知道可以使用 if/else 条件,但是否可以使用 while 循环?
我使用了两种变体,但在我的例子中(见图片)while 循环不起作用并且仍然出现空字符串错误。有没有更优雅的方法可以在一个 while 循环中评估更多字段?
What is the best way to test if string is empty?
使用is empty
块
but is there possibility to use while loop?
使用 while
循环进行一些数据验证没有意义,因为正如您已经发现的那样,while
循环会阻塞您的设备并导致运行时错误。另请参阅 Lyn
的 The model of event processing in App Inventor
is there some more elegant way to evaluate more fields in one while
loop?
不要使用 while
循环,而是使用 if - then - elseif - elseif - ... - else
语句,另请参阅 documentation
测试字符串是否为空的最佳方法是什么?
我知道可以使用 if/else 条件,但是否可以使用 while 循环?
我使用了两种变体,但在我的例子中(见图片)while 循环不起作用并且仍然出现空字符串错误。有没有更优雅的方法可以在一个 while 循环中评估更多字段?
What is the best way to test if string is empty?
使用is empty
块
but is there possibility to use while loop?
使用 while
循环进行一些数据验证没有意义,因为正如您已经发现的那样,while
循环会阻塞您的设备并导致运行时错误。另请参阅 Lyn
is there some more elegant way to evaluate more fields in one while loop?
不要使用 while
循环,而是使用 if - then - elseif - elseif - ... - else
语句,另请参阅 documentation