mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 17:53:10 +00:00
Add regular expression escaping filter.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user