[Freeswitch-users] Regex capturing in nested conditions
Ken Rice
krice at freeswitch.org
Wed Jan 25 17:37:51 MSK 2017
You cant overwrite destination_number with a set command, its not a channel variable, its an element on the caller profile struct.
If you need to reset destination_number you must use the transfer application
From: freeswitch-users-bounces at lists.freeswitch.org [mailto:freeswitch-users-bounces at lists.freeswitch.org] On Behalf Of KSrigo
Sent: Wednesday, January 25, 2017 4:02 AM
To: FreeSWITCH Users Help <freeswitch-users at lists.freeswitch.org>
Subject: Re: [Freeswitch-users] Regex capturing in nested conditions
Hi,
try this:
<extension name="8 prefix" continue="true">
<condition field="destination_number" expression="^8(0\d{9,15})">
<action application="set" data="dst_number=$1" inline="true"/>
<condition field="${db(exists/${sip_from_user}/cli8}" expression="true">
<action application="set" data="destination_number=${dst_number}" inline="true"/>
<action application="log" data="INFO ${dst_number} ${destination_number}"/>
</condition>
</condition>
</extension>
"destination_number" is a FreeSWITCH variable; it shouldn't be changed.
Regards,
Srigo
On Jan 24, 2017, at 7:14 PM, Rick Jarvis <rick at magicmail.mooo.com <mailto:rick at magicmail.mooo.com> > wrote:
Is there a way of referencing captured regex in the first condition of nested conditions?
EG If I have:
<extension name="8 prefix" continue="true">
<condition field="destination_number" expression="^8(0\d{9,15})"/>
<condition field="${db(exists/${sip_from_user}/cli8}" expression="true">
<action application="set" data="destination_number=$1" inline="true"/>
</condition>
</extension>
At the moment this doesn’t capture the number, and just gives me an actual ‘$1’. I guess I could rearrange the conditions, but I don’t want to break all my logic really…
_________________________________________________________________________
Professional FreeSWITCH Consulting Services:
consulting at freeswitch.org <mailto:consulting at freeswitch.org>
http://www.freeswitchsolutions.com
Official FreeSWITCH Sites
http://www.freeswitch.org
http://confluence.freeswitch.org
http://www.cluecon.com
FreeSWITCH-users mailing list
FreeSWITCH-users at lists.freeswitch.org <mailto:FreeSWITCH-users at lists.freeswitch.org>
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20170125/e3e94fa4/attachment-0001.html
Join us at ClueCon 2016 Aug 8-12, 2016
More information about the FreeSWITCH-users
mailing list