cut
移除值中所有指定的字符串。类似于python中的replace(args,"")。示例代码如下:
{
{ value|cut:" " }} # value='tom love cat' --> # tomlovecat
以上示例将会移除value中所有的空格字符。cut过滤器的源代码如下:
def cut(value, arg):
"""Remove all values of arg from the given string."""
safe = isinstance(value, SafeData)
value = value.replace(arg, '')
if safe and arg != ';':
return mark_safe(value)
return value