我是新来的Jinja2,到目前为止,我已经能够做我想要的大部分。但是,我需要使用正则表达式,我似乎没有找到任何地方在任何地方在
the documentation或谷歌。
我想在Javascript中创建一个模仿这个行为的宏:
function myFunc(str) { return str.replace(/someregexhere/,'').replace(' ','_'); }
这将删除字符串中的字符,然后用下划线替换空格。如何用Jinja2这样做?
如果实际上不需要正则表达式,那么就有一个已经存在的称为
原文链接:https://www.f2er.com/regex/357373.htmlreplace
的过滤器,可以使用。否则,您可以注册
custom filter:
{# Replace method #} {{my_str|replace("some text","")|replace(" ","_")}}
# Custom filter method def regex_replace(s,find,replace): """A non-optimal implementation of a regex filter""" return re.sub(find,replace,s) jinja_environment.filters['regex_replace'] = regex_replace