<span style="font-family: Arial, Helvetica, sans-serif; font-size: 10pt"><span style="font-family: tahoma,arial,sans-serif; font-size: 10pt;"><hr width="100%" size="2" align="center" />
<b>From</b>: "Bryant Zimmerman" &lt;BryantZ@zktech.com&gt;<br />
<b>Sent</b>: Thursday, July 07, 2011 4:14 PM<br />
<b>To</b>: "Asterisk Users Mailing List - Non-Commercial Discussion" &lt;asterisk-users@lists.digium.com&gt;<br />
<b>Subject</b>: Re: [asterisk-users] Stripping characters from ${CALLERID(num)} ?</span><br />
<br />
<span style="font-family: arial, helvetica, sans-serif; font-size: 10pt;">Here is a simple way to strip the '-'&nbsp;<br />
<br />
Here is a concept solution.<br />
I have not tested the code so there may be some syntax errors.&nbsp;<br />
It can work as I am doing stuff like this all the time. This example is using a check to only do the cut if there is more than one field. You may be able to just use step&nbsp;3 from ctx&nbsp;and have what you want, but I am not sure if it will fall back gracefully if there is only 1 field. <br />
<br />
No AGI required.<br />
<br />
exten =&gt; mycode,n,Gosub(ctx,1)<br />
<br />
exten =&gt; ctx,1,Set(l_filedCNT=${FIELDQTY(CALLERID(num),-)})<br />
exten =&gt; ctx,n,GotoIf($[${MATH(${l_filedCNT}&gt;1)}=TRUE]?DoStrip:doSkip)<br />
exten =&gt; ctx,n(doStrip),Set (CALLERID(num)=${CUT(CALLERID(num), -, 1-)})<br />
exten =&gt; ctx,n(doSkip),NoOp(${CALLERID(num)})<br />
<br />
<br />
<div id="divSignature">Thanks<br />
zktech<br />
<br />
Made a correct in the above to reflect the skip state doSkip vs SkpStrip and made&nbsp;syntax correct to the Set/CUT line. There may still be a few more syntax issues in there.<br />
<br />
zktech<br />
<br />
</div>
</span><br /></span>