[asterisk-users] Get second cipher in an extension

2011-06-20 Thread Jonas Kellens

Hello list,

how can I get the second character/cipher of an extension ?

If I have : exten = 12345,n,NoOP()

How can I get 2 ?

If I have : exten = 787,n,NoOP()

How can I get 8 ?


Thanks !

Kind regards,
Jonas.
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Get second cipher in an extension

2011-06-20 Thread Eric Wieling


 -Original Message-
 From: asterisk-users-boun...@lists.digium.com
 [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of
 Jonas Kellens
 Sent: Monday, June 20, 2011 3:09 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: [asterisk-users] Get second cipher in an extension

 Hello list,

 how can I get the second character/cipher of an extension ?

 If I have : exten = 12345,n,NoOP()

 How can I get 2 ?

 If I have : exten = 787,n,NoOP()

 How can I get 8 ?

https://wiki.asterisk.org/wiki/display/AST/Selecting+Characters+from+Variables

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Get second cipher in an extension

2011-06-20 Thread Richard Kenner
 how can I get the second character/cipher of an extension ?
 
 If I have : exten = 12345,n,NoOP()
 
 How can I get 2 ?

${EXTEN:1:1}

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Get second cipher in an extension

2011-06-20 Thread Warren Selby
On Mon, Jun 20, 2011 at 2:09 PM, Jonas Kellens jonas.kell...@telenet.bewrote:

 **
 Hello list,

 how can I get the second character/cipher of an extension ?

 snip

I vaguely recall that to get a substring out of an extension variable, you
would use it in the format ${EXTEN:offset:length}, so for your example it
would be

${EXTEN:1:1}

-- 
Thanks,
--Warren Selby, dCAP
http://www.SelbyTech.com http://www.selbytech.com
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users