package com. lihaozhe. util. string ; import java. util. UUID ;
import java. util. concurrent. ThreadLocalRandom ;
public class StringUtils { public static String ltrim ( String string) { if ( string == null ) { throw new NullPointerException ( ) ; } else { return string. replaceAll ( "^\\s+" , "" ) ; } } public static String rtrim ( String string) { if ( string == null ) { throw new NullPointerException ( ) ; } else { return string. replaceAll ( "\\s+$" , "" ) ; } } public static String randomUUID ( ) { return UUID . randomUUID ( ) . toString ( ) ; } public static String simpleUUID ( ) { return randomUUID ( ) . replace ( "-" , "" ) ; } public static String random ( int count) { String codePool = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" ; StringBuilder sb = new StringBuilder ( ) ; for ( int i = 0 ; i < count; i++ ) { sb. append ( codePool. charAt ( ThreadLocalRandom . current ( ) . nextInt ( codePool. length ( ) ) ) ) ; } return sb. toString ( ) ; } public static String randomNumeric ( int count) { String codePool = "0123456789" ; StringBuilder sb = new StringBuilder ( ) ; for ( int i = 0 ; i < count; i++ ) { sb. append ( codePool. charAt ( ThreadLocalRandom . current ( ) . nextInt ( codePool. length ( ) ) ) ) ; } return sb. toString ( ) ; } public static boolean isEmpty ( String string) { if ( string == null || string. length ( ) == 0 ) { return true ; } return false ; } public static boolean isBlank ( String string) { if ( string == null || string. trim ( ) . length ( ) == 0 ) { return true ; } return false ; } public static String getExtension ( String fileName) { int index = fileName. lastIndexOf ( "." ) ; if ( index == - 1 ) { return "" ; } return fileName. substring ( index + 1 ) ; }
}