java thymeleaf字符串对象的使用记录

java springboot框架结合thymeleaf模板使用,在使用过程中经常会对字符串对象进行处理。

1、pom文件引入thymeleaf模板依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

2、在application.yml中设置模板属性,比如把模板缓存为false,这样修改html页面后刷新浏览器

spring:
  thymeleaf:
    cache: false

3、创建测试TestController.java

package com.example.demo;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class TestController {
    @RequestMapping("/test")
    public String test(){
        return "test";
    }
}

4、在template目录下创建test.html

1、调用参数的toString方法返回字符串
<div th:text="${#strings.toString('hello')}"></div>

2、返回字符串的长度
<div th:text="${#strings.length('hello')}"></div>

3、判断是否为空或null
<div th:text="${#strings.isEmpty('hello')}"></div>
<div th:text="${#strings.isEmpty('')}"></div>
<div th:text="${#strings.isEmpty(null)}"></div>

4、为空或null时设置默认值
<div th:text="${#strings.defaultString('hello','a')}"></div>
<div th:text="${#strings.defaultString('','b')}"></div>
<div th:text="${#strings.defaultString(null,'c')}"></div>

5、判断是否包含(区分大小写)
<div th:text="${#strings.contains('hello','he')}"></div>
<div th:text="${#strings.contains('hello','HE')}"></div>

6、判断是否包含(忽略大小写)
<div th:text="${#strings.containsIgnoreCase('hello','he')}"></div>
<div th:text="${#strings.containsIgnoreCase('hello','HE')}"></div>

7、判断开头和结尾是否包含(区分大小写)
<div th:text="${#strings.startsWith('hello','he')}"></div>
<div th:text="${#strings.startsWith('hello','HE')}"></div>
<div th:text="${#strings.startsWith('hello','el')}"></div>
<div th:text="${#strings.endsWith('hello','lo')}"></div>

8、获取字符串的索引(如果不存在返回-1)
<div th:text="${#strings.indexOf('hello','el')}"></div>
<div th:text="${#strings.indexOf('hello','ee')}"></div>

9、指定开始和结束索引,截取字符串(如果索引超过字符串长度,则抛出异常)
<div th:text="${#strings.substring('hello',1,3)}"></div>

10、指定从某个字符串后面截取字符串(如果不包含则返回空字符串)
<div th:text="${#strings.substringAfter('hello','e')}"></div>
<div th:text="${#strings.substringAfter('hello','ee')}"></div>

11、指定从某个字符串前面截取字符串(如果不包含则返回空字符串)
<div th:text="${#strings.substringBefore('hello','e')}"></div>
<div th:text="${#strings.substringBefore('hello','ee')}"></div>

12、替换字符串
<div th:text="${#strings.replace('hello','e','a')}"></div>

13、转换为大写
<div th:text="${#strings.toUpperCase('hello')}"></div>

14、转换为小写
<div th:text="${#strings.toLowerCase('HELLO')}"></div>

15、首字母转换为大写
<div th:text="${#strings.capitalize('hello')}"></div>

16、首字母转换为小写
<div th:text="${#strings.unCapitalize('heLLo')}"></div>

17、每个单词的首字母转为大写
<div th:text="${#strings.capitalizeWords('hello world')}"></div>

18、根据分隔符将每个单词的首字母转换为大写
<div th:text="${#strings.capitalizeWords('hello-world','-')}"></div>

19、字符串前面追加
<div th:text="${#strings.prepend('world','hello ')}"></div>

20、字符串后面追加
<div th:text="${#strings.append('hello',' world')}"></div>

21、拼接字符串(参数个数不限)
<div th:text="${#strings.concat('hello',' world',' !')}"></div>

22、从第二个参数之后拼接字符串,如果参数为null,则用第一个参数替代
<div th:text="${#strings.concatReplaceNulls('*','hello',null,'world')}"></div>

23、删除空白
<div th:text="${#strings.trim(' hello ')}"></div>

24、字符串截取指定长度(最小为3),后面加...
<div th:text="${#strings.abbreviate('hello,world', 8)}"></div>

25、产生指定位数的随机字母数字,范围为大写英文字母加0-9数字
<div th:text="${#strings.randomAlphanumeric(4)}"></div>

26、调用HtmlEscape类的escapeHtml4Xml方法对参数进行编码
<div th:text="${#strings.escapeXml('<span>hello</span>')}"></div>

5、在浏览器中输入地址:http://127.0.0.1:8080/test

1、调用参数的toString方法返回字符串
hello
2、返回字符串的长度
5
3、判断是否为空或null
false
true
true
4、为空或null时设置默认值
hello
b
c
5、判断是否包含(区分大小写)
true
false
6、判断是否包含(忽略大小写)
true
true
7、判断开头和结尾是否包含(区分大小写)
true
false
false
true
8、获取字符串的索引(如果不存在返回-1)
1
-1
9、指定开始和结束索引,截取字符串(如果索引超过字符串长度,则抛出异常)
el
10、指定从某个字符串后面截取字符串(如果不包含则返回空字符串)
llo
11、指定从某个字符串前面截取字符串(如果不包含则返回空字符串)
h
12、替换字符串
hallo
13、转换为大写
HELLO
14、转换为小写
hello
15、首字母转换为大写
Hello
16、首字母转换为小写
heLLo
17、每个单词的首字母转为大写
Hello World
18、根据分隔符将每个单词的首字母转换为大写
Hello-World
19、字符串前面追加
hello world
20、字符串后面追加
hello world
21、拼接字符串(参数个数不限)
hello world !
22、从第二个参数之后拼接字符串,如果参数为null,则用第一个参数替代
hello*world
23、删除空白
hello
24、字符串截取指定长度(最小为3),后面加...
hello...
25、产生指定位数的随机字母数字,范围为大写英文字母加0-9数字
PBAT
26、调用HtmlEscape类的escapeHtml4Xml方法对参数进行编码
&lt;span&gt;hello&lt;/span&gt;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值