<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:SkipStrip)<br />
exten =&gt; ctx,n(doStrip),Set CALLERID(num)=${CUST(CALLERID(num), -, 1-)<br />
exten =&gt; ctx,n(doSkip),NoOp(${CALLERID(num)})<br />
<br />
<br />
<div id="divSignature">Thanks<br />
zktech<br />
<br />
</div></span>