I have this format of string: 110001101 and I would like to split that string to string[] by grouped chunks of 1s or 0s.
So from that string I would get splitted string[] = { "11", "000", "11", "0", "1" };
Is it possible to achieve that with Regex, I don't know where to start? Or should I find another solution...
