[asterisk-users] GotoIf Double Pattern Match [SEC=UNCLASSIFIED]

Pete Mundy pete at fiberphone.co.nz
Sun Nov 27 18:06:23 CST 2016


> On 28/11/2016, at 12:29 pm, Calum Power <Calum.Power at aad.gov.au> wrote:
> 
> <snip>
> 
> What I have written come up with is below, but I just wanted to see if I was going about this the right way, and that this expression would actually work...
>  
> exten => B,n,GotoIf($["${CALLERID(num):-2}" = "13"] & $["${CALLERID(num):0:2}" = [5-9][5-9])?change_context)
>  
> Any advice/suggestions/flames welcome J

Hi Calum

I think you'll need another closing square-bracket at the end of the second conditional test in your example, ie:  5-9]])?cha

I also think you may need to wrap that second conditional up in the REGEX function, although there are much smarter people on-list who will likely come back with a better suggestion!

Also, checking the second character of CID is the same as the first character (otherwise you'd match 56, 69, 97 etc).

I'm thinking something like:

$[${REGEX("[5-9]" ${CALLERID(num):0:1})}] & $[${CALLERID(num):0:1} = ${CALLERID(num):1:1}]

Hope this helps anyway :)

Pete





-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20161128/a7ecf1e7/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 3577 bytes
Desc: not available
URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20161128/a7ecf1e7/attachment.bin>


More information about the asterisk-users mailing list