My string have this form XxYxZx
X , Y and Z are characters and the x are numbers which can vary from 0-999.
I want to split this string in this form. How can this be done?
- Xx
- Yx
- Zx
Example:
Input: "A155B45C77D89"
Output: "A155", "B45", "C77", "D89"
XxYxZxintoXx,Yx,Zx".