jiaji2系统字符串过滤




    
    Title



    {#    使用格式:{{ 字符串 | 字符串过滤器 }}#}
    1.safe:禁用转义,让标签生效
    

{{ 'hello' | safe }}

2.capitalize:把变量值的首字母转成大写,其余字母转小写

{{ 'hello PYTHON' | capitalize }}

3.lower:把值转成小写

{{ 'HELLO PYthON' | lower }}

4.upper:把值转成大写,中文没有大小写

{{ 'hello python 你好' | upper }}

5.title:把值中的每个单词的首字母都转成大写

{{ 'hello world python java' | title }}

6.reverse:字符串反转

{{ 'olleh' | reverse }}

{{ '我爱你' | reverse }}

7.format:格式化输出

{{ '%s is %d' | format('age',17) }}

8.striptags:渲染之前把值中所有的HTML标签都删掉

{{ 'hello' | striptags }}

你可能感兴趣的:(java,html,开发语言)