java api文档string_StringUtils工具类中文API

Method Summary方法摘要

static String

String str, int maxWidth)

Abbreviates a String using ellipses.

取得字符串的缩写,str:处理的字符串,maxWidth:宽度,从第一个字符开始[1,maxWidth),类似于substring(),返回一个新的字符串,它是此字符串的一个子字符串。

static String

String str, int offset,

int maxWidth)

Abbreviates a

String using ellipses.

取得字符串的缩写,str:处理的字符串,maxWidth:宽度,从第offset个字符开始[offset,axWidth),类似于substring(),返回一个新的字符串,它是此字符串的一个子字符串。

static String

String str)

Deprecated. Use

the standardly named capitalize(String).

Method will be removed in Commons Lang 3.0.

过时了.用 capitalize(String),在Commons Lang 3.0已经没有此方法了。

static String

String str)

Deprecated. Use

the relocated WordUtils.capitalize(String).

Method will be removed in Commons Lang 3.0.

过时了. 在Commons Lang 3.0已经没有此方法了。

static String

String str)

Capitalizes a

String changing the first letter to title case as per Character.toTitleCase(char).

将str手写字母大写,用于名称、头衔等

static String

String str, int size)

Centers a String

in a larger String of size size using the space character (' ').

产生一个字符串返回,该字符串长度等于size,str位于新串的中心,其他位置补空格。

如果str为null,则返回null

如果size小于str的长度,则返回str本身

static String

String str, int size,

char padChar)

Centers a String

in a larger String of size size.

产生一个字符串返回,该字符串长度等于size,str位于新串的中心,其他位置补字符padChar。

如果str为null,则返回null

如果size小于str的长度,则返回str本身

static String

String str, int size, String padStr)

Centers a String

in a larger String of size size.

产生一个字符串返回,该字符串长度等于size,str位于新串的中心,其他位置补字符串padStr。

如果str为null,则返回null

如果size小于str的长度,则返回str本身

static String

String str)

Removes one

newline from end of a String if it's there, otherwise leave it alone.

以单个词为单位的反转

str=”I

am yuanyuan !”;

chomp(str)=”!

yuanyuan an  I”;

static String

String str, String separator)

Removes separator from

the end of str if it's there, otherwise leave it alone.

以单个词为单位的反转,从separator开始

str=”I

am yuanyuan !”;

chomp(str

,”!”)=” yuanyuan an  I !”;

static String

String str)

Deprecated. Use chomp(String) instead.

Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str, String sep)

Deprecated. Use chomp(String,String) instead.

Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str)

Remove the last

character from a String.

去掉字符串str的最后一个字符。如果字符串以"/r/n"结尾,则去掉它们。

static String

String str)

Deprecated. Use chomp(String) instead.

Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str)

Deprecated. Use

the clearer named trimToEmpty(String).

Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

Object[] array)

Deprecated. Use

the better named join(Object[]) instead.

Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static boolean

String str, char searchChar)

Checks if String

contains a search character, handling null.

当此字符串包含指定的字符searchChar 值序列时,返回 true;处理null。

static boolean

String str, String searchStr)

Checks if String

contains a search String, handling null.

当此字符串包含指定的字符串searchStr 值序列时,返回 true;处理null。

static boolean

String str, String searchStr)

Checks if String

contains a search String irrespective of case, handling null.

当此字符串包含指定的字符串searchStr 值序列时,忽略大小写,返回 true;处理null。

static boolean

String str,

char[] invalidChars)

Checks that the

String does not contain certain characters.

判断是否字符串str不包含字符数组invalidChars中的字符,如果含有则返回false。

static boolean

String str, String invalidChars)

Checks that the

String does not contain certain characters.

判断是否字符串str不包含字符串invalidChars,如果含有则返回false。

static boolean

String str, char[] valid)

Checks if the

String contains only certain characters.

判断是否字符串str包含字符数组valid中的字符,如果含有则返回true。

static boolean

String str, String validChars)

Checks if the

String contains only certain characters.

判断是否字符串str包含字符串invalidChars,如果含有则返回true。

static int

String str, String sub)

Counts how many

times the substring appears in the larger String.

计算字符串sub在字符串str中出现的次数。如果str为null或"",则返回0

static String

String str, String defaultStr)

Returns either

the passed in String, or if the String is empty or null, the value

of defaultStr.

如果str不是空或者null,返回str,否则返回defaultStr。

static String

String str)

Returns either

the passed in String, or if the String is null, an empty String

("").

如果str不是空返回str,否则返回""。

static String

String str, String defaultStr)

Returns either

the passed in String, or if the String is null, the value

of defaultStr.

如果str不为空,返回str,否则返回defaultStr

static String

String str)

Deprecated. Use

the better localized deleteWhitespace(String).

Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str)

Deletes all

whitespaces from a String as defined by Character.isWhitespace(char).

删除字符串中的所有空白符

static String

String str1, String str2)

Compares two

Strings, and returns the portion where they differ.

比较两个字符串,返回不同的部分。

static boolean

String str1, String str2)

Compares two

Strings, returning true if they are equal.

比较两个字符串是否相等。

static boolean

String str1, String str2)

Compares two

Strings, returning true if they are equal ignoring the case.

比较两个字符串是否相等,区分大小写。

static String

String str)

Deprecated. Use StringEscapeUtils.escapeJava(String) This

method will be removed in Commons Lang 3.0

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str, String sep)

Deprecated. Use substringAfterLast(String,

String) instead (although this doesn't include the separator)

Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static int

String s, String t)

Find the

Levenshtein distance between two Strings.

计算两个字符串 levenshtein 距离,在计算相似度是用到这个方法

static String

String str, String tag)

Deprecated. Use

the better named substringBetween(String,

String). Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str, String open, String close)

Deprecated. Use

the better named substringBetween(String,

String, String). Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str, String sep)

Deprecated. Use substringBefore(String,String) instead

(although this doesn't include the separator). Method will be removed in

Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static int

String str, char searchChar)

Finds the first

index within a String, handling null.

返回字符searchChar在字符串str中第一次出现的位置。

如果searchChar没有在str中出现则返回-1,

如果str为null或"",则也返回-1

static int

String str, char searchChar,

int startPos)

Finds the first

index within a String from a start position, handling null.

返回字符searchChar从startPos开始在字符串str中第一次出现的位置。

如果从startPos开始searchChar没有在str中出现则返回-1,

如果str为null或"",则也返回-1

static int

String str, String searchStr)

Finds the first

index within a String, handling null.

返回字符串searchStr在字符串str中第一次出现的位置。

如果str为null或searchStr为null则返回-1,

如果searchStr为"",且str为不为null,则返回0,

如果searchStr不在str中,则返回-1

static int

String str, String searchStr,

int startPos)

Finds the first

index within a String, handling null.

返回字符串searchStrr从startPos开始在字符串str中第一次出现的位置。

如果从startPos开始searchStrr没有在str中出现则返回-1,

如果str为null或"",则也返回-1

static int

String str,

char[] searchChars)

Search a String

to find the first index of any character in the given set of characters.

找出字符数组searchChars中的字符第一次出现在字符串str中的位置。

如果字符数组中的字符都不在字符串中,则返回-1

如果字符串为null或"",则返回-1

static int

String str, String searchChars)

Search a String

to find the first index of any character in the given set of characters.

找出字符串searchChars中的字符第一次出现在字符串str中的位置。

如果字符串searchChars中的字符都不在字符串str中,则返回-1

如果searchChars或str为null或为"",则返回-1

static int

String str, String[] searchStrs)

Find the first

index of any of a set of potential substrings.

找出字符数组searchStrs中的字符串第一次出现在字符串str中的位置。

如果字符串数组searchStrs中的字符都不在字符串str中,则返回-1

如果searchStrs或str为null或为"",则返回-1

static int

String str,

char[] searchChars)

Search a String

to find the first index of any character not in the given set of characters.

找出字符串str中不在字符数组searchChars中的第一个字符的位置。

如果字符串中的所有字符都在字符数组中,则返回-1

如果字符串为null或"",则返回-1

static int

String str, String searchChars)

Search a String

to find the first index of any character not in the given set of characters.

找出字符串str中不在字符串searchChars中的第一个字符的位置。

如果字符串str中的所有字符都在字符串searchChars中,则返回-1

如果字符串str或searchChars为null或"",则返回-1

static int

String str1, String str2)

Compares two

Strings, and returns the index at which the Strings begin to differ.

比较两个字符串,返回第一次不同的位置。

static boolean

String str)

Checks if the

String contains only unicode letters.

判断Str是否由字母组成。

static boolean

String str)

Checks if the

String contains only unicode letters or digits.

判断Str是否由字母或数字组成。

static boolean

String str)

Checks if the

String contains only unicode letters, digits or space (' ').

判断Str是否由字母、数字或空格组成。

static boolean

String str)

Checks if the

String contains only unicode letters and space (' ').

判断Str是否由字母和空格组成。

static boolean

String str)

Checks if the

string contains only ASCII printable characters.

判断str是否由ASCII字符组成。

static boolean

String str)

Checks if a

String is whitespace, empty ("") or null.

判断str是否是空格、空字符串或null。

static boolean

String str)

Checks if a

String is empty ("") or null.

判断str是否是空字符串或null。

static boolean

String str)

Checks if a

String is not empty (""), not null and not whitespace only.

判断str是否不为空且长度不为0且不由空白符(whitespace)构成,

等于!isBlank(String str)

static boolean

String str)

Checks if a

String is not empty ("") and not null.

判断某字符串是否非空,等于!isEmpty(String str)

static boolean

String str)

Checks if the

String contains only unicode digits.

判断字符串str是否有数字组成。

static boolean

String str)

Checks if the

String contains only unicode digits or space (' ').

判断字符串str是否有数字或空字符组成。

static boolean

String str)

Checks if the

String contains only whitespace.

判断字符串str是否是空格

static String

Collection collection,

char separator)

Joins the

elements of the provided Collection into a single String containing

the provided elements.

把collection中的元素通过分隔符separator连接成一个字符串返回。

static String

Collection collection, String separator)

Joins the

elements of the provided Collection into a single String containing

the provided elements.

把collection中的元素通过分隔字符串separator连接成一个字符串返回。

static String

Iterator iterator,

char separator)

Joins the

elements of the provided Iterator into a single String containing

the provided elements.

把iterator中的元素通过分隔字符separator连接成一个字符串返回。

static String

Iterator iterator, String separator)

Joins the

elements of the provided Iterator into a single String containing

the provided elements.

把iterator中的元素通过分隔字符串separator连接成一个字符串返回。

static String

Object[] array)

Joins the

elements of the provided array into a single String containing the provided

list of elements.

把数组array中的元素连接成一个字符串返回

static String

Object[] array,

char separator)

Joins the

elements of the provided array into a single String containing the provided

list of elements.

把数组array中的元素通过分隔符separator连接成一个字符串返回。

static String

Object[] array, char separator,

int startIndex, int endIndex)

Joins the elements

of the provided array into a single String containing the provided list of

elements.

把数组array中的元素通过分隔符separator连接成一个字符串返回,连接的开始位置为startIndex,结束位置为endIndex。

static String

Object[] array, String separator)

Joins the

elements of the provided array into a single String containing the provided

list of elements.

把数组array中的元素通过分隔字符串separator连接成一个字符串返回。

static String

Object[] array, String separator, int startIndex,

int endIndex)

Joins the

elements of the provided array into a single String containing the provided

list of elements.

把数组array中的元素通过分隔字符串separator连接成一个字符串返回,连接的开始位置为startIndex,结束位置为endIndex。

static int

String str, char searchChar)

Finds the last

index within a String, handling null.

返回字符searchChar在字符串str中最后一次出现的位置。

如果searchChar没有在str中出现则返回-1,

如果str为null或"",则也返回-1

static int

String str, char searchChar,

int startPos)

Finds the last

index within a String from a start position, handling null.

返回字符串searchStrr从startPos开始在字符串str中最后一次出现的位置。

如果从startPos开始searchStrr没有在str中出现则返回-1,

如果str为null或"",则也返回-1

static int

String str, String searchStr)

Finds the last

index within a String, handling null.

返回字符串searchStr在字符串str中最后一次出现的位置。

如果str为null或searchStr为null则返回-1,

如果searchStr为"",且str为不为null,则返回0,

如果searchStr不在str中,则返回-1

static int

String str, String searchStr,

int startPos)

Finds the first

index within a String, handling null.

返回字符串searchStrr从startPos开始在字符串str中最后一次出现的位置。

如果从startPos开始searchStrr没有在str中出现则返回-1,

如果str为null或"",则也返回-1

static int

String str, String[] searchStrs)

Find the latest

index of any of a set of potential substrings.

找出字符数组searchStrs中的字符串最后一次出现在字符串str中的位置。

如果字符串数组searchStrs中的字符都不在字符串str中,则返回-1

如果searchStrs或str为null或为"",则返回-1

static String

String str, int len)

Gets the

leftmost len characters of a String.

得到字符串str从左边数len长度的子串。

如果str为null或为"",则返回它本身

如果len小于0,则返回""

static String

String str, int size)

Left pad a String

with spaces (' ').

如果字符串长度小于size,则在左边补空格使其长度等于size,然后返回

如果字符串长度大于等于size,则返回它本身

如果str为null,则返回null

static String

String str, int size,

char padChar)

Left pad a String

with a specified character.

如果字符串长度小于size,则在左边补字符padChar使其长度等于size,然后返回

如果字符串长度大于等于size,则返回它本身

如果str为null,则返回null

static String

String str, int size, String padStr)

Left pad a String

with a specified String.

如果字符串长度小于size,则在左边补字符串padStr使其长度等于size,然后返回

如果字符串长度大于等于size,则返回它本身

如果str为null,则返回null

static String

String str)

Converts a String

to lower case as per String.toLowerCase().

字符串str转换为小写。

static String

String str, int pos,

int len)

Gets len characters

from the middle of a String.

得到字符串str从pos开始len长度的子串。

如果str为null或为"",则返回它本身

如果len小于0或pos大于srt的长度,则返回""

如果pos小于0,则pos设为0

static int

String str, String searchStr,

int ordinal)

Finds the n-th

index within a String, handling null.

返回字符串searchStr在字符串str中第ordinal次出现的位置。

如果str=null或searchStr=null或ordinal<=0则返回-1

static String

String str, String overlay, int start,

int end)

Overlays part of

a String with another String.

用字符串overlay覆盖字符串str从start到end之间的串。

如果str为null,则返回null

如果start或end小于0,则设为0

如果start大于end,则两者交换

如果start或end大于str的长度,则认为等于str的长度

static String

String text, String overlay, int start,

int end)

Deprecated. Use

better named overlay(String, String, int,

int) instead. Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str, String sep)

Deprecated. Use substringAfter(String,String) instead.

Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str, char remove)

Removes all

occurances of a character from within the source string.

去掉字符串str中所有包含字符remove的部分,然后返回

static String

String str, String remove)

Removes all

occurances of a substring from within the source string.

去掉字符串str中所有包含字符串remove的部分,然后返回

static String

String str, String remove)

Removes a

substring only if it is at the end of a source string, otherwise returns the

source string.

如果字符串str是以字符串remove结尾,则去掉这个结尾,然后返回,否则返回原来的串。

static String

String str, String remove)

Removes a

substring only if it is at the begining of a source string, otherwise returns

the source string.

如果字符串str是以字符串remove开始,则去掉这个开始,然后返回,否则返回原来的串。

static String

String str, int repeat)

Repeat a

String repeat times to form a new String.

重复字符串str

repeat次,组合成一个新串返回。

如果字符串str为null或"",则返回它本身

如果repeat小于0,则返回""

static String

String text, String repl, String with)

Replaces all

occurrences of a String within another String.

在字符串text中用字符串with代替字符串repl,替换所有。

static String

String text, String repl, String with, int max)

Replaces a String

with another String inside a larger String, for the

first max values of the search String.

在字符串text中用字符串with代替字符串repl,max为最大替换次数。

如果max小于0,则替换所有。

static String

String str, char searchChar,

char replaceChar)

Replaces all

occurrences of a character in a String with another.

在字符串str中用字符replaceChar代替所有字符searchChar,如果字符串为null或"",则返回它本身。

static String

String str, String searchChars, String replaceChars)

Replaces multiple

characters in a String in one go.

用字符串replaceChars替换字符串str中的字符串searchChars。

replaceChars的长度应该和searchChars的长度相等,

如果replaceChars的长度大于searchChars的长度,超过长度的字符将被忽略,

如果replaceChars的长度小于searchChars的长度,超过长度的字符将被删除。

static String

String text, String repl, String with)

Replaces a String

with another String inside a larger String, once.

在字符串text中用字符串with代替repl,仅一次。

static String

String str)

Reverses a String

as per StringBuffer.reverse().

以字符(单个词)为单位的反转。

static String

String str,

char separatorChar)

Reverses a String

that is delimited by a specific character.

字符串str单词反向排序,以separatorChar为界限。

static String

String str, String separatorChars)

Deprecated. Use reverseDelimited(String,

char) instead. This method is broken as the join doesn't know

which char to use. Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str, int len)

Gets the

rightmost len characters of a String.

得到字符串str从右边数len长度的子串。

如果str为null或为"",则返回它本身

如果len小于0,则返回""

static String

String str, int size)

Right pad a

String with spaces (' ').

如果str为null,则返回null

如果字符串长度小于size,则在右边补空格使其长度等于size,然后返回

如果字符串长度大于等于size,则返回它本身

static String

String str, int size,

char padChar)

Right pad a

String with a specified character.

如果str为null,则返回null

如果字符串长度小于size,则在右边补字符padChar使其长度等于size,然后返回

如果字符串长度大于等于size,则返回它本身。

static String

String str, int size, String padStr)

Right pad a

String with a specified String.

如果字符串长度小于size,则在右边补字符串padChar使其长度等于size,然后返回

如果字符串长度大于等于size,则返回它本身。

static String[]

String str)

Splits the provided

text into an array, using whitespace as the separator.

把字符串拆分成一个字符串数组,用空白符(whitespace)作为分隔符。

如果字符串为null,返回null

如果字符串为"",返回空数组{}

static String[]

String str,

char separatorChar)

Splits the

provided text into an array, separator specified.

把字符串拆分成一个字符串数组,用指定的字符separatorChar作为分隔符。

如果字符串为null,返回null

如果字符串为"",返回空数组{}

static String[]

String str, String separatorChars)

Splits the

provided text into an array, separators specified.

把字符串拆分成一个字符串数组,用指定的字符串separatorChars作为分隔符。

如果字符串str为null,返回null

如果字符串str为"",返回空数组{}

如果separatorChars为null,则默认为空白符

static String[]

String str, String separatorChars,

int max)

Splits the

provided text into an array with a maximum length, separators specified.

把字符串拆分成一个字符串数组,用指定的字符串separatorChars作为分隔符,

数组的最大长度为max。

如果字符串str为null,返回null

如果字符串str为"",返回空数组{}

如果separatorChars为null,则默认为空白符

如果max小于等于0,认为是没有限制

static String[]

String str, String separator)

Splits the

provided text into an array, separator string specified.

同String str, String separatorChars),暂时没有发现区别

static String[]

String str, String separator, int max)

Splits the

provided text into an array, separator string specified.

同String str, String separatorChars, int max),暂时没有发现区别。

static String[]

String str)

Splits the

provided text into an array, using whitespace as the separator, preserving

all tokens, including empty tokens created by adjacent separators.

把字符串str拆分成一个数组,用空白符(whitespace)作为分隔符,保留所有的标识,

包括相邻分隔符产生的空的标识。它可作为StringTokenizer的一个替代。

static String[]

String str,

char separatorChar)

Splits the

provided text into an array, separator specified, preserving all tokens,

including empty tokens created by adjacent separators.

把字符串str拆分成一个数组,用字符separatorChar作为分隔符,保留所有的标识,

包括相邻分隔符产生的空的标识。

static String[]

String str, String separatorChars)

Splits the

provided text into an array, separators specified, preserving all tokens,

including empty tokens created by adjacent separators.

把字符串str拆分成一个数组,用字符串separatorChars作为分隔符,保留所有的标识,

包括相邻分隔符产生的空的标识。

static String[]

String str, String separatorChars,

int max)

Splits the

provided text into an array with a maximum length, separators specified,

preserving all tokens, including empty tokens created by adjacent separators.

把字符串str拆分成一个数组,用字符串separatorChars作为分隔符,保留所有的标识,

包括相邻分隔符产生的空的标识。数组的最大长度为max。如果max为0或负数,则认为没有限制

static String

String str)

Strips whitespace

from the start and end of a String.

去掉字符串两端的空白符(whitespace),如果输入为null则返回null

static String

String str, String stripChars)

Strips any of a

set of characters from the start and end of a String.

去掉str两端的在stripChars中的字符。如果str为null或等于"",则返回它本身; 如果stripChars为null或"",则返回strip(String str)。

static String[]

String[] strs)

Strips whitespace

from the start and end of every String in an array.

对字符串数组中的每个字符串进行strip(String

str),然后返回。 如果strs为null或strs长度为0,则返回strs本身

static String[]

String[] strs, String stripChars)

Strips any of a

set of characters from the start and end of every String in an array.

对字符串数组中的每个字符串进行strip(String

str, String stripChars),然后返回。 如果strs为null或strs长度为0,则返回strs本身

static String

String str, String stripChars)

Strips any of a

set of characters from the end of a String.

去掉str末端的在stripChars中的字符。如果str为null或等于"",则返回它本身; 如果stripChars为null或"",则返回strip(String str)。

static String

String str, String stripChars)

Strips any of a

set of characters from the start of a String.

去掉str前端的在stripChars中的字符。如果str为null或等于"",则返回它本身; 如果stripChars为null或"",则返回strip(String str)。

static String

String str)

Strips whitespace

from the start and end of a String returning an empty String

if null input.

去掉字符串两端的空白符(whitespace), 如果变为null或"",则返回""

static String

String str)

Strips whitespace

from the start and end of a String returning null if the String is

empty ("") after the strip.

去掉字符串两端的空白符(whitespace), 如果变为null或"",则返回null

static String

String str, int start)

Gets a substring

from the specified String avoiding exceptions.

得到字符串str的子串。 如果start小于0,位置是从后往前数的第|start|个 如果str为null或"",则返回它本身

static String

String str, int start,

int end)

Gets a substring

from the specified String avoiding exceptions.

得到字符串str的子串。 如果start小于0,位置是从后往前数的第|start|个, 如果end小于0,位置是从后往前数的第|end|个, 如果str为null或"",则返回它本身

static String

String str, String separator)

Gets the

substring after the first occurrence of a separator.

得到字符串str的在字符串separator出现后的字符串,且separator不包括在内。

如果str为null或为"",则返回它本身

如果separator为null,则返回""

static String

String str, String separator)

Gets the

substring after the last occurrence of a separator.

得到字符串str的在字符串separator最后一次出现后的字符串,且separator不包括在内。

如果str为null或为"",则返回它本身

如果separator为null,则返回""

static String

String str, String separator)

Gets the

substring before the first occurrence of a separator.

得到字符串str的在字符串separator出现前的字串,且separator不包括在内。

如果str为null或为"",则返回它本身

如果separator为null,则返回str本身

static String

String str, String separator)

Gets the

substring before the last occurrence of a separator.

得到字符串str的在字符串separator最后一次出现前的字串,且separator不包括在内。

如果str为null或为"",则返回它本身

如果separator为null,则返回str本身

static String

String str, String tag)

Gets the String

that is nested in between two instances of the same String.

得到str中的在两个字符串tag中间的字符串,即str中的tag所夹的串。

如果str为null或tag为null,返回null

static String

String str, String open, String close)

Gets the String

that is nested in between two Strings.

得到str中的在两个字符串open和close中间的字符串,即open和close所夹的串,只返回第一个匹配的结果。

如果str为null或open为null或close为null,返回null

static String[]

String str, String open, String close)

Searches a String

for substrings delimited by a start and end tag, returning all matching

substrings in an array.

得到str中的在两个字符串open和close中间的字符串,即open和close所夹的串,

把所有符合的结果放在数组中返回。

static String

String str)

Swaps the case of

a String changing upper and title case to lower case, and lower case to upper

case.

把字符串中的字符大写转换为小写,小写转换为大写。

static String

String str)

Removes control

characters (char <= 32) from both ends of this String,

handling null by returning null.

去掉字符串两端的控制符(control

characters, char <= 32)

如果输入为null则返回null

static String

String str)

Removes control

characters (char <= 32) from both ends of this String returning an empty

String ("") if the String is empty ("") after the trim or

if it is null.

去掉字符串两端的控制符(control

characters, char <= 32) 如果变为null或"",则返回""

static String

String str)

Removes control

characters (char <= 32) from both ends of this String

returning null if the String is empty ("") after the trim

or if it is null.

去掉字符串两端的控制符(control

characters, char <= 32) 如果变为null或"",则返回null

static String

String str)

Deprecated. Use

the standardly named uncapitalize(String).

Method will be removed in Commons Lang 3.0.

过时了.在Commons Lang 3.0已经没有此方法了

static String

String str)

Uncapitalizes a

String changing the first letter to title case as per Character.toLowerCase(char).

第一个字符小写。

static String

String str)

Converts a String

to upper case as per String.toUpperCase().

字符串变为大写。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值