Manipulating Of A Dialed Sequence
Hi Asterisk List
Given, as an example, the following sequence
012345*543210
I would like to store into a variable all digits before “*” (012345) and in a different variable all digits after the “*” (543210) for further processing in the dial plan.
The length of the dialed sequence may be variable and “*” is the separator between the two values to store.
Any idea?
Thanks
Francesco
3 thoughts on - Manipulating Of A Dialed Sequence
Have you tried the ‘cut’ function?
Hi
Try this:
[pbx]
exten => _1X.,1,Answer()
same => n,Set(VAR2345*543210)
same => n,Set(VAR1=${CUT(VAR,*,1)}) ;012345
same => n,Set(VAR1=${CUT(VAR,*,2)}) ;543210
[image: Sua Foto]Rafael S. SaraivaPorto Alegre – RS
| Mobile: (51) 8174-7956
<http://br.linkedin.com/pub/rafael-saraiva/52/aab/230>
<https://plus.google.com/u/0/+RafaelSaraivaRS>
2015-12-05 14:21 GMT-02:00 Frank:
Steve and Rafael, that is exactly what I was looking for!
Many thanks for your help!
🙂