亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Thymeleaf字符串對象怎么使用

發布時間:2022-01-22 12:14:34 來源:億速云 閱讀:230 作者:iii 欄目:web開發

本篇內容主要講解“Thymeleaf字符串對象怎么使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Thymeleaf字符串對象怎么使用”吧!

Thymeleaf主要使用 org.thymeleaf.expression.Strings 類處理字符串,在模板中使用 #strings 對象來處理字符串。

開發環境:IntelliJ IDEA 2019.2.2
Spring Boot版本:2.1.8

新建一個名稱為demo的Spring Boot項目。

1、pom.xml
加入Thymeleaf依賴

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

2、src/main/resources/application.yml 
設置模板緩存為false,這樣修改html頁面后刷新瀏覽器能馬上看到結果

spring:
  thymeleaf:
    cache: false

3、src/main/java/com/example/demo/TestController.java

package com.example.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="${#strings.toString('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="${#strings.contains('hello','he')}"></div>
<div th:text="${#strings.contains('hello','HE')}"></div>
判斷是否包含(忽略大小寫)
<div th:text="${#strings.containsIgnoreCase('hello','he')}"></div>
<div th:text="${#strings.containsIgnoreCase('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="${#strings.endsWith('hello','lo')}"></div>
獲取字符串的索引(如果不存在返回-1)
<div th:text="${#strings.indexOf('hello','el')}"></div>
<div th:text="${#strings.indexOf('hello','ee')}"></div>
指定開始和結束索引,截取字符串(如果索引超過字符串長度,則拋出異常)
<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="${#strings.replace('hello','e','a')}"></div>
轉換為大寫
<div th:text="${#strings.toUpperCase('hello')}"></div>
轉換為小寫
<div th:text="${#strings.toLowerCase('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="${#strings.concat('hello',' world',' !')}"></div>
從第二個參數之后拼接字符串,如果參數為null,則用第一個參數替代
<div th:text="${#strings.concatReplaceNulls('*','hello',null,'world')}"></div>
刪除空白
<div th:text="${#strings.trim(' 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>

瀏覽器訪問:http://localhost:8080
頁面輸出:

調用參數的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),后面加...
hello...
產生指定位數的隨機字母數字,范圍為大寫英文字母加0-9數字
PBAT
調用HtmlEscape類的escapeHtml4Xml方法對參數進行編碼
&lt;span&gt;hello&lt;/span&gt;

到此,相信大家對“Thymeleaf字符串對象怎么使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长治市| 澳门| 宁都县| 南靖县| 象州县| 西藏| 荃湾区| 饶阳县| 临城县| 东港市| 巴彦淖尔市| 苗栗市| 蓬溪县| 明光市| 华亭县| 巢湖市| 靖边县| 如东县| 津南区| 凤台县| 墨脱县| 南开区| 绥滨县| 瑞金市| 定安县| 白沙| 新河县| 天台县| 卫辉市| 枝江市| 清镇市| 保靖县| 翁源县| 沭阳县| 四平市| 黄龙县| 黄平县| 永新县| 通辽市| 镇雄县| 彰武县|