mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add regular expression escaping filter.
This commit is contained in:
parent
0b6fadaad7
commit
c1e4085251
1 changed files with 5 additions and 0 deletions
|
@ -222,6 +222,10 @@ def version_compare(value, version, operator='eq', strict=False):
|
|||
except Exception, e:
|
||||
raise errors.AnsibleFilterError('Version comparison: %s' % e)
|
||||
|
||||
def re_escape(string):
|
||||
'''Escape all regular expressions special characters from STRING.'''
|
||||
return re.escape(string)
|
||||
|
||||
@environmentfilter
|
||||
def rand(environment, end, start=None, step=None):
|
||||
r = SystemRandom()
|
||||
|
@ -356,6 +360,7 @@ class FilterModule(object):
|
|||
'search': search,
|
||||
'regex': regex,
|
||||
'regex_replace': regex_replace,
|
||||
're_escape': re_escape,
|
||||
|
||||
# ? : ;
|
||||
'ternary': ternary,
|
||||
|
|
Loading…
Reference in a new issue