<div dir="ltr">I am getting the source and destination URI from $fu and $ru.  How to fetch the SIP username from the source and destination URI. <div><br></div><div>What I've tried and not working:</div><div># Extract destination URI from the R-URI (Request-URI)<br>            $var(destination_uri) = $(ru);<br><br>            # Find the position of "@" character in the URI<br>            $var(at_position) = strstr($(ru), "@");<br><br>            # If "@" is found, extract the substring before it as the SIP username<br>            if ($var(at_position) != -1) {<br>                $var(destination_username) = substr($var(destination_uri), 4, $var(at_position) - 5);<br>            } else {<br>                $var(destination_username) = "Unknown";<br>            }<br><div><br></div><span class="gmail_signature_prefix">-- </span><br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>Regards,</div><div>B.Prathibha<br></div></div></div></div></div>