Thymeleaf对象的使⽤:字符串对象Thymeleaf主要使⽤ pression.Strings 类处理字符串,在模板中使⽤ #strings 对象来处理字符串。开发环境:IntelliJ IDEA 2019.2.2
Spring Boot版本:2.1.8
新建⼀个名称为demo的Spring Boot项⽬。
1、l
加⼊Thymeleaf依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2、src/main/l
设置模板缓存为false,这样修改html页⾯后刷新浏览器能马上看到结果
spring:
thymeleaf:
cache: false
3、src/main/java/com/example/demo/TestController.java
ample.demo;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class TestController {
@RequestMapping("/")
public String test(){
return "test";
}
}
4、src/main/resources/templates/test.html
调⽤参数的toString⽅法返回字符串
<div th:text="${#String('hello')}"></div>
返回字符串的长度
<div th:text="${#strings.length('hello')}"></div>
判断是否为空或null
<div th:text="${#strings.isEmpty('hello')}"></div>
<div th:text="${#strings.isEmpty('')}"></div>
<div th:text="${#strings.isEmpty(null)}"></div>
为空或null时设置默认值
<div th:text="${#strings.defaultString('hello','a')}"></div>
<div th:text="${#strings.defaultString('','b')}"></div>
<div th:text="${#strings.defaultString(null,'c')}"></div>
判断是否包含(区分⼤⼩写)
<div th:text="${#ains('hello','he')}"></div>
<div th:text="${#ains('hello','HE')}"></div>
判断是否包含(忽略⼤⼩写)
<div th:text="${#ainsIgnoreCase('hello','he')}"></div>
<div th:text="${#ainsIgnoreCase('hello','HE')}"></div>
判断开头和结尾是否包含(区分⼤⼩写)
<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="${#dsWith('hello','lo')}"></div>
获取字符串的索引(如果不存在返回-1)
<div th:text="${#strings.indexOf('hello','el')}"></div>
<div th:text="${#strings.indexOf('hello','ee')}"></div>
指定开始和结束索引,截取字符串(如果索引超过字符串长度,则抛出异常)
thyme<div th:text="${#strings.substring('hello',1,3)}"></div>
指定从某个字符串后⾯截取字符串(如果不包含则返回空字符串)
<div th:text="${#strings.substringAfter('hello','e')}"></div>
<div th:text="${#strings.substringAfter('hello','ee')}"></div>
指定从某个字符串前⾯截取字符串(如果不包含则返回空字符串)
<div th:text="${#strings.substringBefore('hello','e')}"></div>
<div th:text="${#strings.substringBefore('hello','ee')}"></div>
替换字符串
<div th:text="${#place('hello','e','a')}"></div>
转换为⼤写
<div th:text="${#UpperCase('hello')}"></div>
转换为⼩写
<div th:text="${#LowerCase('HELLO')}"></div>
⾸字母转换为⼤写
<div th:text="${#strings.capitalize('hello')}"></div>
⾸字母转换为⼩写
<div th:text="${#strings.unCapitalize('heLLo')}"></div>
每个单词的⾸字母转为⼤写
<div th:text="${#strings.capitalizeWords('hello world')}"></div>
根据分隔符将每个单词的⾸字母转换为⼤写
<div th:text="${#strings.capitalizeWords('hello-world','-')}"></div>
字符串前⾯追加
<div th:text="${#strings.prepend('world','hello ')}"></div>
字符串后⾯追加
<div th:text="${#strings.append('hello',' world')}"></div>
拼接字符串(参数个数不限)
<div th:text="${#at('hello',' world',' !')}"></div>
从第⼆个参数之后拼接字符串,如果参数为null,则⽤第⼀个参数替代
<div th:text="${#atReplaceNulls('*','hello',null,'world')}"></div>删除空⽩
<div th:text="${#im(' hello ')}"></div>
字符串截取指定长度(最⼩为3),后⾯加...
<div th:text="${#strings.abbreviate('hello,world', 8)}"></div>
产⽣指定位数的随机字母数字,范围为⼤写英⽂字母加0-9数字
<div th:text="${#strings.randomAlphanumeric(4)}"></div>
调⽤HtmlEscape类的escapeHtml4Xml⽅法对参数进⾏编码
<div th:text="${#strings.escapeXml('<span>hello</span>')}"></div>
调⽤参数的toString⽅法返回字符串
hello
返回字符串的长度
5
判断是否为空或null
false
true
true
为空或null时设置默认值
hello
b
c
判断是否包含(区分⼤⼩写)
true
false
判断是否包含(忽略⼤⼩写)
true
true
判断开头和结尾是否包含(区分⼤⼩写)
true
false
false
true
获取字符串的索引(如果不存在返回-1)
1
-1
指定开始和结束索引,截取字符串(如果索引超过字符串长度,则抛出异常) el
指定从某个字符串后⾯截取字符串(如果不包含则返回空字符串)
llo
指定从某个字符串前⾯截取字符串(如果不包含则返回空字符串)
h
替换字符串
hallo
转换为⼤写
HELLO
转换为⼩写
hello
⾸字母转换为⼤写
Hello
⾸字母转换为⼩写
heLLo
每个单词的⾸字母转为⼤写
Hello World
根据分隔符将每个单词的⾸字母转换为⼤写
Hello-World
字符串前⾯追加
hello world
字符串后⾯追加
hello world
拼接字符串(参数个数不限)
hello world !
从第⼆个参数之后拼接字符串,如果参数为null,则⽤第⼀个参数替代hello*world
删除空⽩
hello
字符串截取指定长度(最⼩为3),后⾯加...
<
产⽣指定位数的随机字母数字,范围为⼤写英⽂字母加0-9数字PBAT
调⽤HtmlEscape类的escapeHtml4Xml⽅法对参数进⾏编码<span>hello</span>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论