i have a string which contains binary digits. how to separate each 8 digit? Suppose the string isL string x = "111111110000000011111111000000001111111100000000";
i want to add a seperator like ,(comma) after each 8 character.
output should be :
"11111111,00000000,11111111,00000000,11111111,00000000,"
Then i want to send it to a list<> last 8 char 1st then the previous 8 chars(excepting ,) and so on.
How could i do this?