#Some random string error
1 messages · Page 1 of 1 (latest)
Hey, @kind galleon!
Please remember to /close this post once your question has been answered!
This code is meant to find a . inside a string and do something afterwards. However how this is performed is simply wrong.
- Use
.toCharArray()if you want to check every character inside the String - your if condition will now change to
if(s == '.')
Yep thanks so much ❤️