Execution result
var b = "asfsadefbweabgggggggggggg".Split("ab".ToCharArray());
is a list of 6 lines, while I want to split the array in "asfsadefbwe"and "gggggggggggg". Is there a way / way to do this correctly (with C #)?
PS: I will use a string that has some data separately "\r\n"secuences.
source
share