Question on parsing
I have a student that wants to translate from english to morse code. In this case you would need to read a word letter by letter.
I can see how to parse a string into words by splitting on spaces. I don't know how to parse a word into individual letters.
Could I move the individual word to a list of letters and loop through the list - how to do it though?
If I was doing it in another language I would get the length of the string, Then in a loop I could look at each letter in the string until the # letter in the string = length of string.
I.E
For x = 1 to Length of list
Look at the xth letter in the list
Next x
I know how to do this in other languages - but not in App Inventor.
Some help would be greatly appreciated.