Please more turtorials on Analyzing text
-
I would like to see more text analyzing Stuff Tutorials maybe you can make them.
-
Is this possible
-
@petermeisenstein Anything is possible. It is just down to time and resources
-
@pianofire I think i figured out now how to check if an input is a number
-
@petermeisenstein Cool! Feel free to share it here
-
@pianofire Last question its off topic sorry but its important.
Can you go in fuze with [] through a string.I mean can you use it [1] first position
-
It's 0-based, so [1] is second position and [0] is first position.
This is also something you can easily try out yourself for example with:print("abcd"[3]) //prints d print("abcd"[2]) //prints c print("abcd"[1]) //prints b print("abcd"[0]) //prints a
Don't be afraid to experiment a little to find out how code behaves :)
-
@PB____ Thanks for the help