Hi,
I am trying to read username portion of Contact header:
My Contact header content has a URI value such as: sip:8131110000@10.10.10.10.:5060
and I am trying to read : 8131110000
I tried the following perl similar RE and it didn't work:
($var(main_number2)) = $ct =~ /sip:(.*)@/;
Thanks,AS