App Inventor中的整数到字符串
Integer to string in App Inventor
我想知道App Inventor有没有"proper"把整数转成字符串的方法?
例如: C++ 中的 toString()
目前我使用的是间接方式,在字符串中使用"trim"函数将整数转换为字符串。
不需要从 integer 到 string 的转换,只需按原样使用变量即可。
string 到 integer 相同。在这种情况下,您可能想先测试一下,如果它是一个使用 is a number
块的数字,另请参阅 http://appinventor.mit.edu/explore/ai2/support/blocks/math.html#isnumber.
学习 App Inventor 的一个很好的方法是阅读 AI2 免费在线电子书 http://www.appinventor.org/book2 中的免费发明家手册 http://www.appinventor.org/book2 ...链接位于网页底部。 'teaches' 书向用户介绍了如何使用 AI2 块进行编程。
这里有免费的编程课程http://www.appinventor.org/content/CourseInABox/Intro and the aia files for the projects in the book are here: http://www.appinventor.org/bookFiles
这里描述了如何使用 App Inventor 做很多基本的事情:http://www.appinventor.org/content/howDoYou/eventHandling .
同时学习教程 http://appinventor.mit.edu/explore/ai2/tutorials.html 以了解 App Inventor 的基础知识,然后尝试一些操作并按照
Top 5 Tips: How to learn App Inventor
大家好,回复晚了,但我只是在通过 BLE 向设备发送数据时遇到了这个问题,App Inventor 不承认我需要将数字用作字符串,所以我遇到了错误。一段时间后我发现的一个简单修复是在 'text' 选项中使用 'join' 函数。
只需将连接和您的整数值放在顶部,'join' 它带有一个空文本框。
我想知道App Inventor有没有"proper"把整数转成字符串的方法?
例如: C++ 中的 toString()
目前我使用的是间接方式,在字符串中使用"trim"函数将整数转换为字符串。
不需要从 integer 到 string 的转换,只需按原样使用变量即可。
string 到 integer 相同。在这种情况下,您可能想先测试一下,如果它是一个使用 is a number
块的数字,另请参阅 http://appinventor.mit.edu/explore/ai2/support/blocks/math.html#isnumber.
学习 App Inventor 的一个很好的方法是阅读 AI2 免费在线电子书 http://www.appinventor.org/book2 中的免费发明家手册 http://www.appinventor.org/book2 ...链接位于网页底部。 'teaches' 书向用户介绍了如何使用 AI2 块进行编程。
这里有免费的编程课程http://www.appinventor.org/content/CourseInABox/Intro and the aia files for the projects in the book are here: http://www.appinventor.org/bookFiles
这里描述了如何使用 App Inventor 做很多基本的事情:http://www.appinventor.org/content/howDoYou/eventHandling .
同时学习教程 http://appinventor.mit.edu/explore/ai2/tutorials.html 以了解 App Inventor 的基础知识,然后尝试一些操作并按照 Top 5 Tips: How to learn App Inventor
大家好,回复晚了,但我只是在通过 BLE 向设备发送数据时遇到了这个问题,App Inventor 不承认我需要将数字用作字符串,所以我遇到了错误。一段时间后我发现的一个简单修复是在 'text' 选项中使用 'join' 函数。
只需将连接和您的整数值放在顶部,'join' 它带有一个空文本框。