parse part of the text from regex pattern
- by dalco
I have a string:
[\n['-','some text what\rcontains\nnewlines'],\n\n
trying to parse:
Regex.Split(@"[\n['-','some text what contains newlines'],\n\n", @"\[\n\['(.*)','(.*)'],.*");
but the split return array seems to be null
i need to get part of text: "some text what contains newlines"