how can can i do this ? i can't get the return value and i can understand how regex work .
string value = "+CMT:"+639231568462"," ","18/10/07,14:31:32+32" HELLO"
";
Regex r = new Regex("");
Match m = r.Match(value);
while(m.Success)
{
string number = m.Group[0].toString();
string Date = m.Group[1].toString();
string Time = m.Group[2].toString();
string Mesage= m.Group[3].toString();
}
OUTPUT
number = +639231568462;
date = 18/10/07;
time = 14:31:32;
message = HELLO;