Hello everyone,
I am quite new with MIT App inventor and i would like to know how it is possible to convert a list of texts to a list of floats?
Per example : ["1545.6", "1548.9"] to [1545.6, 1548.9]
Thank you!
Hello everyone,
I am quite new with MIT App inventor and i would like to know how it is possible to convert a list of texts to a list of floats?
Per example : ["1545.6", "1548.9"] to [1545.6, 1548.9]
Thank you!
If you must:
but as previously said, the string will be treated as a number in mathematical operations. However, the number may be treated differently in (online databases) - e.g. firebase/mySQL/sqLite - but this will depend on how you transfer it.
This is a list of strings, fyi.
Floats are same as Integers but with decimal values.
You should add 0.0 to make it universal solution.
Because 1+0 will be still be treated as 1 and not at 1.0 .
How did the list of texts arrive into your app?
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.