1. 程式人生 > >【commons】字符串工具類——commons-lang3

【commons】字符串工具類——commons-lang3

常用操作 article 工具類 comm temp nbsp cnblogs empty 常見用法

類似工具見Hutool-StrUtil

一、起步

  引入maven依賴

 <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version
>3.4</version> </dependency>

  非maven項目想下載jar包,請移步這裏:http://commons.apache.org/proper/commons-lang/download_lang.cgi

二、開始使用

  概覽

  技術分享

  常見用法

  下參見網友的隨筆:http://blog.csdn.net/xuxiaoxie/article/details/52095930

isEmpty()、isNotEmpty();isBlank、isNotBlank()及以上變種參見hutool-StrUtil篇,不再贅述

trim()——去除字符串兩段空白,變種strip()不展開,參見上文隨筆,deleteWhitespace()——刪除字符串中間空白

equals()——解決原生equals的空指針問題,,變種equalsIngnoreCase()不展開,示例參見上文隨筆

leftPad()/rightPad()——左右補齊的方法,低於指定長度時自動補齊

abbreviate()——縮略字符串,縮略為abc...的樣式,但是...需要占3位

  其它操作不一一列舉...常用操作待小結

【commons】字符串工具類——commons-lang3