The result of doing
var b = "asfsadefbweabgggggggggggg".Split("ab".ToCharArray());
is a list of 6 strings while I want to split the array in "asfsadefbwe"
and "gggggggggggg"
. Is there any way/method to properly do that (with C#)?
PS: I'll use a string which has some data separate by "\r\n"
secuences.