public class StringUtils
extends org.apache.commons.lang.StringUtils
StringUtils
contains useful methods for manipulating Strings.Modifier and Type | Field and Description |
---|---|
static String |
WHITE_SPACE |
Constructor and Description |
---|
StringUtils() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
hexStringToByteArray(String hex)
Convert a hexadecimal string into its byte representation.
|
static String |
match(Pattern pattern,
String value,
int matchIndex)
Matches the given value to the given pattern.
|
static String |
repeat(char c,
int len)
Like
StringUtils.repeat(String, int) but with a single character as argument. |
static String[] |
splitAndTrim(String string,
String delim)
Like
StringUtils.split(String, String) , but additionally
trims whitespace from the result tokens. |
static String |
toHexString(byte[] bytes) |
static String |
toHexString(byte[] bytes,
boolean uppercase)
Convert a byte array to a hexadecimal string.
|
abbreviate, abbreviate, capitalise, capitaliseAllWords, capitalize, center, center, center, chomp, chomp, chompLast, chompLast, chop, chopNewline, clean, concatenate, contains, contains, containsAny, containsAny, containsIgnoreCase, containsNone, containsNone, containsOnly, containsOnly, countMatches, defaultIfEmpty, defaultString, defaultString, deleteSpaces, deleteWhitespace, difference, endsWith, endsWithIgnoreCase, equals, equalsIgnoreCase, escape, getChomp, getCommonPrefix, getLevenshteinDistance, getNestedString, getNestedString, getPrechomp, indexOf, indexOf, indexOf, indexOf, indexOfAny, indexOfAny, indexOfAny, indexOfAnyBut, indexOfAnyBut, indexOfDifference, indexOfDifference, isAlpha, isAlphanumeric, isAlphanumericSpace, isAlphaSpace, isAsciiPrintable, isBlank, isEmpty, isNotBlank, isNotEmpty, isNumeric, isNumericSpace, isWhitespace, join, join, join, join, join, join, join, join, join, lastIndexOf, lastIndexOf, lastIndexOf, lastIndexOf, lastIndexOfAny, left, leftPad, leftPad, leftPad, length, lowerCase, mid, ordinalIndexOf, overlay, overlayString, prechomp, remove, remove, removeEnd, removeEndIgnoreCase, removeStart, removeStartIgnoreCase, repeat, replace, replace, replaceChars, replaceChars, replaceEach, replaceEachRepeatedly, replaceOnce, reverse, reverseDelimited, reverseDelimitedString, right, rightPad, rightPad, rightPad, split, split, split, split, splitByCharacterType, splitByCharacterTypeCamelCase, splitByWholeSeparator, splitByWholeSeparator, splitByWholeSeparatorPreserveAllTokens, splitByWholeSeparatorPreserveAllTokens, splitPreserveAllTokens, splitPreserveAllTokens, splitPreserveAllTokens, splitPreserveAllTokens, startsWith, startsWithIgnoreCase, strip, strip, stripAll, stripAll, stripEnd, stripStart, stripToEmpty, stripToNull, substring, substring, substringAfter, substringAfterLast, substringBefore, substringBeforeLast, substringBetween, substringBetween, substringsBetween, swapCase, trim, trimToEmpty, trimToNull, uncapitalise, uncapitalize, upperCase
public static final String WHITE_SPACE
public static String[] splitAndTrim(String string, String delim)
StringUtils.split(String, String)
, but additionally
trims whitespace from the result tokens.public static byte[] hexStringToByteArray(String hex)
hex
- The hexadecimal string.null
if the hex String is null.public static String repeat(char c, int len)
StringUtils.repeat(String, int)
but with a single character as argument.public static String toHexString(byte[] bytes)
toHexString(byte[])
public static String toHexString(byte[] bytes, boolean uppercase)
bytes
- The bytes to format.uppercase
- When true
creates uppercase hex characters
instead of lowercase (the default).public static String match(Pattern pattern, String value, int matchIndex) throws IllegalArgumentException
pattern
- the pattern to use as regexpvalue
- the value to evaluatematchIndex
- the group index to be returnednull
if no
match foundIllegalArgumentException
- if pattern or value are null.Copyright © 2003–2016 MuleSoft, Inc.. All rights reserved.