Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
you can use char or byte array. – AliRıza Adıyahşi Mar 29 '12 at 19:27
4  
See this: stackoverflow.com/questions/3436398/… – Ryan Mar 29 '12 at 19:28
can i do the first thing with string.Format()?if than how? – decoyer Mar 29 '12 at 19:31
whathaveyoutried.com – Bob2Chiv Mar 29 '12 at 19:38

6 Answers

up vote 10 down vote accepted
Regex.Replace(myString, ".{8}", "$0,");

If you want an array of eight-character strings, then the following is probably easier:

Regex.Split(myString, "(?<=^(.{8})+)");

which will split the string only at points where a multiple of eight characters precede it.

share|improve this answer
+1 Wow, this is a very nice regexp trick to learn! – dasblinkenlight Mar 29 '12 at 19:41
Might be worthwhile asserting that they're only binary "digits", not any character: "[01]{8}" – GalacticCowboy Mar 29 '12 at 19:53
2  
Well, I hope they know what kind of data they throw into this :) – Јοеу Mar 29 '12 at 19:55

Try this:

var s = "111111110000000011111111000000001111111100000000";
var list = Enumerable
    .Range(0, s.Length/8)
    .Select(i => s.Substring(i*8, 8))
    .ToList();
var res = string.Join(",", list);
share|improve this answer
This is an awesome solution. – Ryan Bennett Mar 29 '12 at 19:32
Yes indeed... Thanks @dasbinkeblight – decoyer Mar 29 '12 at 19:36
You don't need the ToList() by the way, as string.Join has an overload that takes an IEnumerable (since .NET 4). – Јοеу Mar 29 '12 at 19:57
1  
@Joey I know, but I initially misunderstood the question. I read the part where the OP says "Then i want to send it to a list<>" part, and posted an answer with ToList() and no string.Join line. Then I re-read the question, added res = ..., and saved, but I forgot to remove ToList(). – dasblinkenlight Mar 29 '12 at 20:08

If I understand your last requirement correctly (it's not clear to me if you need the intermediate comma-delimited string or not), you could do this:

var enumerable = "111111110000000011111111000000001111111100000000".Batch(8).Reverse();

By utilizing morelinq.

share|improve this answer
If only Batch was standard :( In any case, it's hand to know about morelinq. – user166390 Mar 29 '12 at 19:40

There's (edit: another - didn't scroll down :() the Regex approach.

var str = "111111110000000011111111000000001111111100000000";
# for .NET 4
var res = String.Join(",",Regex.Matches(str, @"\d{8}").Cast<Match>());

# for .NET 3.5
var res = String.Join(",", Regex.Matches(str, @"\d{8}")
            .OfType<Match>()
            .Select(m => m.Value).ToArray());
share|improve this answer
I like this approach as the "pieces are understandable", even if it takes a little bit more fudge in .NET 3.5 – user166390 Mar 29 '12 at 19:48
Thanks for the additions :) - I keep forgetting to check for framework compatibility. – Alex Mar 29 '12 at 19:50

One way using LINQ:

string data = "111111110000000011111111000000001111111100000000";
const int separateOnLength = 8;

string separated = new string(
    data.Select((x,i) => i > 0 && i % separateOnLength == 0 ? new [] { ',', x } : new [] { x })
        .SelectMany(x => x)
        .ToArray()
    );
share|improve this answer

...or old school:

public static List<string> splitter(string in, out string csv)
{
     if (in.length % 8 != 0) throw new ArgumentException("in");
     var lst = new List<string>(in/8);

     for (int i=0; i < in.length / 8; i++) lst.Add(in.Substring(i*8,8));

     csv = string.Join(",", lst); //This we want in input order (I believe)
     lst.Reverse(); //As we want list in reverse order (I believe)

     return lst;
}
share|improve this answer
I call that "Java". No thanks :-) – user166390 Mar 29 '12 at 19:48
I call it easy to read - but to each their own :D Other than the Regex methods here, it is what the Linq methods are doing behind the scenes - looping through and chopping as they go - just much easier to read. I do like the Batch method above, that's a new one on me :) – Wolf5370 Mar 29 '12 at 19:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.