Re: [asterisk-users] how to copy a variable without interpretation of the content

2008-04-23 Thread Eric Dantie
Sorry, bad expressed, what I want to know is how can I do this in AEL: I've already got a variable X-CALLID with the content ctprueba-123456789.12 How can I copy the content X-CALLID to the new variable TEST? something like TEST=${X-CALLID}; (The problem comes because of the operator minus).

Re: [asterisk-users] how to copy a variable without interpretation of the content

2008-04-23 Thread Tilghman Lesher
On Wednesday 23 April 2008 08:37, Eric Dantie wrote: Sorry, bad expressed, what I want to know is how can I do this in AEL: I've already got a variable X-CALLID with the content ctprueba-123456789.12 How can I copy the content X-CALLID to the new variable TEST? something like

Re: [asterisk-users] how to copy a variable without interpretation of the content

2008-04-23 Thread Rob Hillis
Try TEST=${X-CALLID}; and see how you go. Eric Dantie wrote: Sorry, bad expressed, what I want to know is how can I do this in AEL: I've already got a variable X-CALLID with the content ctprueba-123456789.12 How can I copy the content X-CALLID to the new variable TEST? something like

Re: [asterisk-users] how to copy a variable without interpretation of the content

2008-04-23 Thread Philipp Kempgen
Eric Dantie schrieb: Sorry, bad expressed, what I want to know is how can I do this in AEL: I've already got a variable X-CALLID with the content ctprueba-123456789.12 How can I copy the content X-CALLID to the new variable TEST? something like TEST=${X-CALLID}; (The problem comes