Consider i have a string "011100011". Now i need to find another string by adding the adjacent digits of this string, like the output string should be "123210122".
How to split each characters in the string and manipulate them.?
The method that i thought was, converting the string to integer using Parsing and splitting each character using modulus or something and performing operations on them.
But can u suggest some simpler methods.?!