How to split a String into characters?

bot1robot

Member
@krishna462
Just a rough idea about logic :
1.Take a loop with starting position 0 to length input string variable (ROBOTICS)
2. For each iteration take one character at a time and store it in some table or temporary variable / Array.
3. Increase counter by 1
4. At the end of the loop you will have individual character in table or temporary variable / Array.

Hope this helps.
 
Top