Say if I have the string "George:45:185" that contains the information Name:age:height about a person; how would I go about reading these values individually from the string? The solution seems to be to separate the string at the ":" symbol and after that reading the values individually, but I can not get it to work.
How do I go about solving this?