Tried to escape it?

   - REGEX: "\\b/exclude1/\\b\|\\b/exclude2/\\b"

On Tuesday, July 28, 2015 at 2:49:11 AM UTC+2, Steve Malenfant wrote:
>
> I'm running into a little problem trying to register a variable with a "|" 
> in it. Anybody know how to escape those?
>
> I've got this template :
>
> {% for sections in transforms_conf %}
>
> [{{ sections.section }}]
>
> {% for options in sections.options %}
>
> {% for option, value in options.iteritems() %}
>
> {{ option }} = {{ value }}
>
> {% endfor %}
>
> {% endfor %}
>
>
> {% endfor %}
>
>
> With the following variables :
>
>
> transforms_conf:
>
>  - section: setnull
>
>    options: 
>
>     - REGEX: "\\b/exclude1/\\b|\\b/exclude2/\\b"
>
>     - DEST_KEY: queue
>
>     - FORMAT: nullQueue
>
>
> Which I'm trying to get this as output :
>
>  
>
> [setnull]
>
> REGEX = \b/exclude1/\b|\b/exclude2/\b
>
> DEST_KEY = queue
>
> FORMAT = nullQueue
>
>
> Although I only get this in the results :
>
>
> [setnull]
>
> REGEX = \b/exclude1/\b
>
> DEST_KEY = queue
>
> FORMAT = nullQueue
>
>
> Thanks
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/d934fd7d-35df-4999-9020-3c6702fc24a9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to