string text = "AT + CMGL =\"REC UNREAD\"\r\r\n+CMGL: 5,\"REC UNREAD\",\"+420733505479\",\"\",\"2015/09/08 13:38:31+08\"\r\nPrdel\r\n\r\nOK\r\n";
Regex regex = new REgex(CMGL:\s(.*?),\\"(.*?)\\",\\"(.*?)\\",\\"\\",\\"(.*?)\\"\\r\\n(.*?)\\r\\n\\r\\n);
I need output like this:
[38-39]
5[42-52]
REC UNREAD- [57-70]
+420733505479 - [80-102]
2015/09/08 13:38:31+08 - [108-113]
Prdel
I tried this expression on https://regex101.com and it seems all right but when I run my program, regex fails to find the text. I was only able to force it to find:
+CMGL: 5,
"REC UNREAD",
"+420733505479",
"",
"2015/09/08 13:38:31+08"
Prdel
I have absolutely no idea how this could happen. Could anyone help me please?

new REgex(CMGL:\s. could you correct it?