Class StringMethods
- java.lang.Object
-
- org.apache.commons.lang3.StringUtils
-
- io.toro.martini.StringMethods
-
public final class StringMethods extends StringUtils
Exposes utility methods in Apachecommons-lang3
'sStringUtils
class as one-liners.
-
-
Field Summary
-
Fields inherited from class org.apache.commons.lang3.StringUtils
CR, EMPTY, LF, SPACE
-
-
Constructor Summary
Constructors Constructor Description StringMethods(io.toro.properties.ToroProperties properties)
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static String
appendPrefix(String prefix, Character separator, String body)
Prepends a prefix and a separator to a string, in said order.static String
appendPrefix(String prefix, String separator, String body)
Prepends a prefix and a separator to a string, in said order.static boolean
containsAny(CharSequence cs, Collection<? extends CharSequence> searchChars)
Checks whether or not the provided string contains any of the substrings specified in the collection.static boolean
containsAny(CharSequence cs, Collection<? extends CharSequence> searchChars, boolean ignoreCase)
Checks whether or not the provided string contains any of the substrings specified in the collection.static int
countFinds(Collection<String> strings, String regularExpression)
Counts the total number of occurrences of the given regular expression in the entries.static int
countMatches(Collection<String> strings, String regularExpression)
Counts the number of entries instrings
matching the regular expressionregularExpression
.static String
decrypt(String encryptedKey)
Deprecated, for removal: This API element is subject to removal in a future version.static String
decrypt(String encryptedText, char[] secretKey)
Decrypts a Base64-encoded ciphertext using AES-GCM.static String
ellipsize(String str, int maxLength)
If the provided string exceeds the provided maximum length, it will be truncated and appended with an ellipsis.static String
encloseString(String str, String startEnclosure, String endEnclosure)
Return a string prepended and appended with the provided strings.static String
encrypt(String plainKey)
Deprecated, for removal: This API element is subject to removal in a future version.static String
encrypt(String text, char[] secretKey)
Encrypt a plain text using AES-GCM and encodes to Base64.static String
generateRandomSecretKey()
Generates a random secret key and encodes it with Base64.static String
generateRandomSecretKey(int keySize)
Generates a random secret key with a specific key size and encodes it with Base64.static String
getEnclosedString(String str, String startEnclosure, String endEnclosure, boolean retainEnclosedChar)
Get the substring in between two substrings.static boolean
hasAMatch(String string, Collection<String> regularExpressions)
Check if the given string matches any of the given regular expressions.static String
humanReadableByteCount(long bytes)
static String
humanReadableByteCount(long bytes, boolean si)
Convert provided bytes in words.static String
implode(Object val, String separator)
Create a string concatenation of the elements of a string array orList
of objects.static boolean
isEnclosed(String str, String startEnclosure, String endEnclosure)
Checks whether or not a string begins and ends with certain substrings.static String
join(Object[] array, String separator, boolean trimElement)
Joins the elements of the provided array into a single string containing the provided array of elements.static String
join(String[] strArr, String charSeparator, Function<String,String> entryTransformer)
Joins the elements of the provided array into a single string containing the provided array of elements.static String
martiniPackageJoin(Collection<MartiniPackage> col, String separator)
Get the names of the provided packages, and concatenate them into a single string.static String
removeEnclosingString(String str, String startEnclosure, String endEnclosure)
Strip any of a set of characters from the beginning and end of a string.static String[]
split(String str, String regex)
Splits this string around matches of the given regular expression Note: This method was overridden to prevent accidental usage ofStringUtils.split(String, String)
overString.split(String)
when used as a one-liner.static String
splitCamelCase(String s)
UsesplitByCharacterTypeCamelCase
to split a given string into tokens and concatenates these tokens via a space.static boolean
startsWithAnyIgnoreCase(CharSequence string, CharSequence... searchStrings)
Checks ifstring
starts with any of the items insearchStrings
, regardless of letter case.static String
substitute(Object tokenisedObject)
Substitutes variables within the given source object with Martini application properties and system property values.static boolean
substituteAsBoolean(Object tokenisedObject)
Usessubstitute(Object)
to substitute variables in the source object, then checks whether or not the result is equal to true (case insensitive).static int
substituteAsInt(Object tokenisedObject)
Usessubstitute(Object)
to substitute variables in the source object, but attempts to parse the result as anint
.static int
substituteAsInt(Object tokenisedObject, int defaultValue)
Usessubstitute(Object)
to substitute variables in the source object, but attempts to parse the result as anint
.static String[]
toArray(Object object)
Get theString[]
representation of the provided object.static String[]
tokenizeToStringArray(String str, String delimiter, boolean trimTokens, boolean ignoreEmptyTokens, boolean retainDelimiter)
Split the provided string into an array, using the givendelimiter
as an indicator of where to split.static String[]
tokenizeToStringArray(String str, String delimiter, boolean trimTokens, boolean ignoreEmptyTokens, boolean retainDelimiter, int max)
Split the provided string into an array with a maximum length ofmax
, using the givendelimiter
as an indicator of where to split.static String[]
transformEntry(String[] strArr, @NotNull Function<String,String> entryTransformer)
Transform each element in the array using the provided function, and then return the transformed array.static String
trimLeadingChar(String str, String character)
Trim a leading substring.static String
trimTrailingChar(String str, String character)
Trim a trailing substring.-
Methods inherited from class org.apache.commons.lang3.StringUtils
abbreviate, abbreviate, abbreviateMiddle, appendIfMissing, appendIfMissingIgnoreCase, capitalize, center, center, center, chomp, chomp, chop, compare, compare, compareIgnoreCase, compareIgnoreCase, contains, contains, containsAny, containsAny, containsAny, containsIgnoreCase, containsNone, containsNone, containsOnly, containsOnly, containsWhitespace, countMatches, countMatches, defaultIfBlank, defaultIfEmpty, defaultString, defaultString, deleteWhitespace, difference, endsWith, endsWithAny, endsWithIgnoreCase, equals, equalsAny, equalsAnyIgnoreCase, equalsIgnoreCase, getCommonPrefix, getFuzzyDistance, getJaroWinklerDistance, getLevenshteinDistance, getLevenshteinDistance, indexOf, indexOf, indexOf, indexOf, indexOfAny, indexOfAny, indexOfAny, indexOfAnyBut, indexOfAnyBut, indexOfDifference, indexOfDifference, indexOfIgnoreCase, indexOfIgnoreCase, isAllLowerCase, isAllUpperCase, isAlpha, isAlphanumeric, isAlphanumericSpace, isAlphaSpace, isAnyBlank, isAnyEmpty, isAsciiPrintable, isBlank, isEmpty, isNoneBlank, isNoneEmpty, isNotBlank, isNotEmpty, isNumeric, isNumericSpace, isWhitespace, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, joinWith, lastIndexOf, lastIndexOf, lastIndexOf, lastIndexOf, lastIndexOfAny, lastIndexOfIgnoreCase, lastIndexOfIgnoreCase, lastOrdinalIndexOf, left, leftPad, leftPad, leftPad, length, lowerCase, lowerCase, mid, normalizeSpace, ordinalIndexOf, overlay, prependIfMissing, prependIfMissingIgnoreCase, remove, remove, removeAll, removeEnd, removeEndIgnoreCase, removeFirst, removeIgnoreCase, removePattern, removeStart, removeStartIgnoreCase, repeat, repeat, repeat, replace, replace, replaceAll, replaceChars, replaceChars, replaceEach, replaceEachRepeatedly, replaceFirst, replaceIgnoreCase, replaceIgnoreCase, replaceOnce, replaceOnceIgnoreCase, replacePattern, reverse, reverseDelimited, right, rightPad, rightPad, rightPad, rotate, split, split, split, splitByCharacterType, splitByCharacterTypeCamelCase, splitByWholeSeparator, splitByWholeSeparator, splitByWholeSeparatorPreserveAllTokens, splitByWholeSeparatorPreserveAllTokens, splitPreserveAllTokens, splitPreserveAllTokens, splitPreserveAllTokens, splitPreserveAllTokens, startsWith, startsWithAny, startsWithIgnoreCase, strip, strip, stripAccents, stripAll, stripAll, stripEnd, stripStart, stripToEmpty, stripToNull, substring, substring, substringAfter, substringAfterLast, substringBefore, substringBeforeLast, substringBetween, substringBetween, substringsBetween, swapCase, toEncodedString, toString, trim, trimToEmpty, trimToNull, truncate, truncate, uncapitalize, upperCase, upperCase, wrap, wrap, wrapIfMissing, wrapIfMissing
-
-
-
-
Method Detail
-
humanReadableByteCount
public static String humanReadableByteCount(long bytes)
-
humanReadableByteCount
public static String humanReadableByteCount(long bytes, boolean si)
Convert provided bytes in words.- Parameters:
bytes
- bytes tosi
- whether or not to use SI unit format- Returns:
- human readable byte count
- Since:
- 1.0
-
splitCamelCase
public static String splitCamelCase(String s)
Use
splitByCharacterTypeCamelCase
to split a given string into tokens and concatenates these tokens via a space.Example usages:
StringMethods.splitCamelCase(null) = null StringMethods.splitCamelCase("") = "" StringMethods.splitCamelCase("ab de fg") = "ab de fg" StringMethods.splitCamelCase("ab de fg") = "ab de fg" StringMethods.splitCamelCase("ab:cd:ef") = "ab: cd: ef" StringMethods.splitCamelCase("number5") = "number 5" StringMethods.splitCamelCase("fooBar") = "foo Bar" StringMethods.splitCamelCase("foo200Bar") = "foo 200 Bar" StringMethods.splitCamelCase("ASFRules") = "ASF Rules"
- Parameters:
s
- the string to split- Returns:
null
, if the string to split isnull
; otherwise, the split string- Since:
- 1.0
-
generateRandomSecretKey
public static String generateRandomSecretKey()
Generates a random secret key and encodes it with Base64. This is to be used as a parameter forencrypt(String, char[])
anddecrypt(String, char[])
one-liners. The number of bits is determined by the maximum allowed key length of the JVM and AES.- Since:
- 2.0
-
generateRandomSecretKey
public static String generateRandomSecretKey(int keySize)
Generates a random secret key with a specific key size and encodes it with Base64. This is to be used as a parameter forencrypt(String, char[])
anddecrypt(String, char[])
one-liners.- Since:
- 2.0
-
encrypt
public static String encrypt(String text, char[] secretKey)
Encrypt a plain text using AES-GCM and encodes to Base64. The encryption algorithm makes use of a Base64 secret key (can be generated usinggenerateRandomSecretKey()
) and a random initialization vector (IV) that is prepended on the ciphertext.- Parameters:
text
- text to encryptsecretKey
- a base64-encoded secret text; unencoded text must be 128, 192, or 256 bits- Returns:
- a Base64-encoded ciphertext
- Since:
- 2.0
-
encrypt
@Deprecated(since="1.0", forRemoval=true) public static String encrypt(String plainKey) throws RuntimeException
Deprecated, for removal: This API element is subject to removal in a future version.Encrypt the plain text password.- Parameters:
plainKey
- the password- Returns:
- the encrypted password
- Throws:
RuntimeException
- if an error occurs- Since:
- 1.0
-
decrypt
public static String decrypt(String encryptedText, char[] secretKey)
Decrypts a Base64-encoded ciphertext using AES-GCM. The decryption algorithm makes use of the Base64 secret key that was used during encryption and expects a initialization vector (IV) prefix on the ciphertext.- Parameters:
encryptedText
- the encrypted textsecretKey
- the secret text used on encryption- Returns:
- the unencrypted text
- Since:
- 2.0
-
decrypt
@Deprecated(since="1.0", forRemoval=true) public static String decrypt(String encryptedKey)
Deprecated, for removal: This API element is subject to removal in a future version.Decrypt the encrypted password.- Parameters:
encryptedKey
- the encrypted password- Returns:
- the plain text password
- Throws:
ToroRuntimeException
- if an error occurs- Since:
- 1.0
-
implode
public static String implode(Object val, String separator)
Create a string concatenation of the elements of a string array or
List
of objects. null elements are excluded from the concatenation.Object.toString()
will be called to get the string representation of each element.See examples here:
StringUtils.join(Object[], String)
.- Parameters:
val
- the array orList
to concatenateseparator
- the character to use in between elements when concatenating- Returns:
- concatenated string;
val.toString()
ifval
is neither aString[]
norList
- Since:
- 1.0
-
tokenizeToStringArray
public static String[] tokenizeToStringArray(String str, String delimiter, boolean trimTokens, boolean ignoreEmptyTokens, boolean retainDelimiter)
Split the provided string into an array, using the given
delimiter
as an indicator of where to split.Example usages:
StringMethods.tokenizeToStringArray(null, ":", false, false, false) = null StringMethods.tokenizeToStringArray("ab:cd:ef", null, false, false, false) = null StringMethods.tokenizeToStringArray(" ab : cd : ef ", ":", true, false, false) = ["ab", "cd", "ef"] StringMethods.tokenizeToStringArray("ab: :cd::ef", ":", false, true, false) = ["ab", " ", "cd", "ef"] StringMethods.tokenizeToStringArray("ab: :cd::ef", ":", false, false, false) = ["ab", " ", "cd", "", "ef"] StringMethods.tokenizeToStringArray("ab:cd:ef", ":", false, false, true) = ["ab", ":", "cd", ":", "ef"]
- Parameters:
str
- the string to splitdelimiter
- indicates where to splitstr
trimTokens
- when set to true, trailing whitespaces are removed from every elementignoreEmptyTokens
- when set to true, empty elements (""
) are removed from the arrayretainDelimiter
- when set to true,delimiter
s in the array will be retained (such that they belong in their own array index)- Returns:
- an array of parsed strings, null if
str
ordelimiter
is null - Since:
- 1.0
-
tokenizeToStringArray
public static String[] tokenizeToStringArray(String str, String delimiter, boolean trimTokens, boolean ignoreEmptyTokens, boolean retainDelimiter, int max)
Split the provided string into an array with a maximum length of
max
, using the givendelimiter
as an indicator of where to split.Example usages:
StringMethods.tokenizeToStringArray(null, ":", false, false, false, 0) = null StringMethods.tokenizeToStringArray("ab:cd:ef", null, false, false, false, 0) = null StringMethods.tokenizeToStringArray(" ab : cd : ef ", ":", true, false, false, 0) = ["ab", "cd", "ef"] StringMethods.tokenizeToStringArray("ab: :cd::ef", ":", false, true, false, 0) = ["ab", " ", "cd", "ef"] StringMethods.tokenizeToStringArray("ab: :cd::ef", ":", false, false, false, 0) = ["ab", " ", "cd", "", "ef"] StringMethods.tokenizeToStringArray("ab:cd:ef", ":", false, false, true, 0) = ["ab", ":", "cd", ":", "ef"] StringMethods.tokenizeToStringArray("ab:cd:ef", ":", false, false, false, 2) = ["ab", "cd:ef"]
- Parameters:
str
- the string to splitdelimiter
- indicates where to splitstr
trimTokens
- when set to true, trailing whitespaces are removed from every elementignoreEmptyTokens
- when set to true, empty elements (""
) are removed from the arrayretainDelimiter
- when set to true,delimiter
s in the array will be retained (such that they belong in their own array index)max
- the maximum number of elements to include in the array; a zero or negative value implies no limit- Returns:
- an array of parsed strings, null if
str
ordelimiter
is null - Since:
- 1.0
-
removeEnclosingString
public static String removeEnclosingString(String str, String startEnclosure, String endEnclosure)
Strip any of a set of characters from the beginning and end of a string.
Example usages:
StringMethods.removeEnclosingString(null, "*", "/") = null StringMethods.removeEnclosingString("", "*", "/") = "" StringMethods.removeEnclosingString("abc", "", "c") = "ab" StringMethods.removeEnclosingString("abc", "a", "") = "bc" StringMethods.removeEnclosingString("abc", null, null) = "abc" StringMethods.removeEnclosingString(" abc", null, "c") = "ab" StringMethods.removeEnclosingString("abc ", "a", null) = "bc" StringMethods.removeEnclosingString("abc ", null, "") = "abc " StringMethods.removeEnclosingString(" abc", "", null) = " abc" StringMethods.removeEnclosingString(" abc ", null, null) = "abc" StringMethods.removeEnclosingString(" yxabc", "xyz", "cde") = " yxab"
- Parameters:
str
- the string to remove characters from, may be nullstartEnclosure
- the characters to remove at the beginning of the string; a null value means leading whitespace characters will be removedendEnclosure
- the characters to remove at the end of the string a null value means trailing whitespace characters will be removed- Returns:
- the stripped string, null if
str
is null
-
encloseString
public static String encloseString(String str, String startEnclosure, String endEnclosure)
Return a string prepended and appended with the provided strings.
Example usages:
StringMethods.encloseString(null, "lettuce", "cheese") = null StringMethods.encloseString("patty", "lettuce", "cheese") = "lettucepattycheese" StringMethods.encloseString("patty", null, "cheese") = "pattycheese" StringMethods.encloseString("patty", "lettuce", null) = "lettucepatty" StringMethods.encloseString("patty", "", null) = "patty" StringMethods.encloseString("patty", null, "") = "patty"
- Parameters:
str
- the string to enclosestartEnclosure
- the string to prepend tostr
endEnclosure
- the string to appendstr
- Returns:
- enclosed string
-
isEnclosed
public static boolean isEnclosed(String str, String startEnclosure, String endEnclosure)
Checks whether or not a string begins and ends with certain substrings.
Example usages:
StringMethods.isEnclosed(null, "lettuce", "cheese") = false StringMethods.isEnclosed(null, null, null) = true StringMethods.isEnclosed("lettucepattycheese", "lettuce", "cheese") = true StringMethods.isEnclosed(" lettucepattycheese", "lettuce", "cheese") = true StringMethods.isEnclosed("lettucepattycheese ", "lettuce", "cheese") = true StringMethods.isEnclosed("nullpattycheese", null, "cheese") = false StringMethods.isEnclosed("lettucepattynull", "lettuce", null) = false
- Parameters:
str
- the string to check; can be nullstartEnclosure
- the substring thatstr
must begin withendEnclosure
- the substring thatstr
must end with- Returns:
- true if
str
beings withstartEnclosure
and ends withendEnclosure
; false otherwise
-
getEnclosedString
public static String getEnclosedString(String str, String startEnclosure, String endEnclosure, boolean retainEnclosedChar)
Get the substring in between two substrings.
Example usages:
StringMethods.getEnclosedString(null, "lettuce", "cheese", false) = null StringMethods.getEnclosedString("thelettucepattycheeseend", "tomato", "cheese", false) = null StringMethods.getEnclosedString("thelettucepattycheeseend", "lettuce", "mustard", false) = null StringMethods.getEnclosedString("thelettucepattycheeseend", "lettuce", "cheese", false) = "patty" StringMethods.getEnclosedString("thelettucepattycheeseend", "lettuce", "cheese", true) = "lettucepattycheese"
- Parameters:
str
- the string to extract the substring from, may be nullstartEnclosure
- the substring preceding the enclosed stringendEnclosure
- the substring succeeding the enclosed stringretainEnclosedChar
- flag determining whether or not to strip the provided substrings in the returned result- Returns:
- the stripped string; null if
str
is null; - Throws:
IllegalArgumentException
- when eitherstartEnclosure
orendEnclosure
is null
-
trimTrailingChar
public static String trimTrailingChar(String str, String character)
Trim a trailing substring.
Example usages:
StringMethods.trimTrailingChar(null, "aac") = null StringMethods.trimTrailingChar("aabbccabbaacaacaac", "aac") = aabbccabb StringMethods.trimTrailingChar("aabbccabbaacaacaac", "abc") = aabbccabbaacaacaac StringMethods.trimTrailingChar("aabbccabbaacaacaacccccc", "aac") = aabbccabbaacaacaacccccc StringMethods.trimTrailingChar("aabbccabbaacaacaacccccc", "ac") = aabbccabbaacaacaacccccc StringMethods.trimTrailingChar("aabbccabbaacaacaacccccc", "c") = aabbccabbaacaacaa StringMethods.trimTrailingChar("aabbccabbaacaacaacccccc", null) = aabbccabbaacaacaacccccc StringMethods.trimTrailingChar("aabbccabbaacaanullcaacccccc", null) = aabbccabbaacaanullcaacccccc StringMethods.trimTrailingChar("aabbccabbaacaanullcaaccccccnullnull", null) = aabbccabbaacaanullcaaccccccnullnull StringMethods.trimTrailingChar("aabbccabbaacaanullcaaccccccnullllll", null) = aabbccabbaacaanullcaaccccccnullllll
- Parameters:
str
- the string to trimcharacter
- the trailing substring to trim- Returns:
- the trimmed string
-
trimLeadingChar
public static String trimLeadingChar(String str, String character)
Trim a leading substring.
Example usages:
StringMethods.trimLeadingChar(null, "aac") = null StringMethods.trimLeadingChar("aacaacaacaabbccabb", "aac") = aabbccabb StringMethods.trimLeadingChar("aaccccccaacaacaabbccabb", "aac") = cccccaacaacaabbccabb StringMethods.trimLeadingChar("aaccccccaacaacaabbccabb", "ac") = aaccccccaacaacaabbccabb StringMethods.trimLeadingChar("aaccccccaacaacaabbccabb", "a") = ccccccaacaacaabbccabb StringMethods.trimLeadingChar("aaccccccaacaacaabbccabb", null) = aaccccccaacaacaabbccabb StringMethods.trimLeadingChar("aabbccabbaacaanullcaacccccc", null) = aabbccabbaacaanullcaacccccc StringMethods.trimLeadingChar("nullnullaabbccabbaacaanullcaacccccc", null) = nullnullaabbccabbaacaanullcaacccccc StringMethods.trimLeadingChar("nullllllaabbccabbaacaanullcaacccccc", null) = nullllllaabbccabbaacaanullcaacccccc
- Parameters:
str
- the string to trimcharacter
- the leading substring to trim- Returns:
- the trimmed string
-
ellipsize
public static String ellipsize(String str, int maxLength)
If the provided string exceeds the provided maximum length, it will be truncated and appended with an ellipsis. This method will truncate an additional 3 characters aside from the maximum allowed length for the ellipses (which takes up 3 characters) to ensure the returned string is no more than the provided maximum length.- Parameters:
str
- the string to ellipsizemaxLength
- the maximum length of the string before an- Returns:
- ellipsized string
- Throws:
IllegalArgumentException
- ifmaxLength
is less than 3
-
martiniPackageJoin
public static String martiniPackageJoin(Collection<MartiniPackage> col, String separator)
Get the names of the provided packages, and concatenate them into a single string.- Parameters:
col
- collection of packagesseparator
- the separator character to use- Returns:
- concatenated names of packages; null if collection of packages is null
-
containsAny
public static boolean containsAny(CharSequence cs, Collection<? extends CharSequence> searchChars)
Checks whether or not the provided string contains any of the substrings specified in the collection. Search is case-sensitive.- Parameters:
cs
- the string to checksearchChars
- the substrings to look for- Returns:
- true if
cs
contains any items fromsearchChars
; false otherwise
-
containsAny
public static boolean containsAny(CharSequence cs, Collection<? extends CharSequence> searchChars, boolean ignoreCase)
Checks whether or not the provided string contains any of the substrings specified in the collection.- Parameters:
cs
- the string to checksearchChars
- the substrings to look forignoreCase
- set to false if search is case sensitive; true if not- Returns:
- true if
cs
contains any items fromsearchChars
; false otherwise
-
appendPrefix
public static String appendPrefix(String prefix, String separator, String body)
Prepends a prefix and a separator to a string, in said order. Ifseparator
is null, then the four-character string null is appended after the prefix.- Parameters:
prefix
- the prefix to useseparator
- the separator to usebody
- the string to prepend- Returns:
prefix + separator + body
-
appendPrefix
public static String appendPrefix(String prefix, Character separator, String body)
Prepends a prefix and a separator to a string, in said order. Ifseparator
is null, then the four-character string null is appended after the prefix.- Parameters:
prefix
- the prefix to useseparator
- the separator to usebody
- the string to prepend- Returns:
prefix + separator + body
- Throws:
NullPointerException
- ifseparator
is null
-
join
public static String join(Object[] array, String separator, boolean trimElement)
Joins the elements of the provided array into a single string containing the provided array of elements. No delimiter is added before or after the list. A null separator is the same as an empty string (""). Null objects or empty strings within the array are represented by empty strings.- Parameters:
array
- - the array of values to join together, may be nullseparator
- - the separator character to use, null treated as ""trimElement
- whether or not to trim whitespaces around each element's string representation- Returns:
- the joined string, null if null array input
-
join
public static String join(String[] strArr, String charSeparator, Function<String,String> entryTransformer)
Joins the elements of the provided array into a single string containing the provided array of elements. No delimiter is added before or after the list. A null separator is the same as an empty string (""). Null objects or empty strings within the array are represented by empty strings.- Parameters:
strArr
- the array of values to join together, may be nullcharSeparator
- the separator to use when concatenatingentryTransformer
- the function to apply to each element before concatenation- Returns:
- the joined string, null if null array input
-
toArray
public static String[] toArray(Object object)
Get theString[]
representation of the provided object. If the object is aCollection
, then its equivalentString[]
is returned. If the object is aString
, then an array of its substring separated by , will be returned. If the object is already aString[]
, then the same array passed in will be returned. If the object is none of these types, then null is returned.- Parameters:
object
- object to convert to array- Returns:
String[]
representation of the object
-
startsWithAnyIgnoreCase
public static boolean startsWithAnyIgnoreCase(CharSequence string, CharSequence... searchStrings)
Checks if
string
starts with any of the items insearchStrings
, regardless of letter case.StringUtils.startsWithAnyIgnoreCase("ABCD", ["AB", "xy"]) = true StringUtils.startsWithAnyIgnoreCase("ABCD", ["ab", "xy"]) = true StringUtils.startsWithAnyIgnoreCase("abcd", ["gh", "xy"]) = false StringUtils.startsWithAnyIgnoreCase("abcd", null) = false StringUtils.startsWithAnyIgnoreCase("", ["abc", ""]) = true StringUtils.startsWithAnyIgnoreCase(null, ["abc", null]) = true StringUtils.startsWithAnyIgnoreCase(null, ["abc", "null"]) = false
- Parameters:
string
- the string to checksearchStrings
- the prefixes to look for- Returns:
- true if
string
starts with any of the items insearchStrings
(case insensitive); false ifsearchStrings
is null or empty.
-
transformEntry
public static String[] transformEntry(String[] strArr, @NotNull @NotNull Function<String,String> entryTransformer)
Transform each element in the array using the provided function, and then return the transformed array.- Parameters:
strArr
- the array to transformentryTransformer
- the function that will be used to transform each element- Returns:
- the transformed array
-
countMatches
public static int countMatches(Collection<String> strings, String regularExpression)
Counts the number of entries in
strings
matching the regular expressionregularExpression
. A null collection of entries or regular expression matches none (thus, zero is returned).- Parameters:
strings
- the entries to checkregularExpression
- the regular expression to match against- Returns:
- number of entries in
strings
matchingregularExpression
; zero if eitherstrings
orregularExpression
is null - See Also:
countFinds(Collection, String)
-
countFinds
public static int countFinds(Collection<String> strings, String regularExpression)
Counts the total number of occurrences of the given regular expression in the entries. A null collection of entries or regular expression matches none (thus, zero is returned).
- Parameters:
strings
- the entries to checkregularExpression
- the regular expression to find- Returns:
- number of entries in
strings
matchingregularExpression
; zero if eitherstrings
orregularExpression
is null - See Also:
countMatches(Collection, String)
-
hasAMatch
public static boolean hasAMatch(String string, Collection<String> regularExpressions)
Check if the given string matches any of the given regular expressions. Results to no matches if either
string
orregularExpressions
is null.- Returns:
- if the given string matches any of the given regular expressions
-
substitute
public static String substitute(Object tokenisedObject)
Substitutes variables within the given source object with Martini application properties and system property values. This method takes a piece of text and substitutes all the variables within it. The default definition of a variable is ${variableName}.
This method allows a default value for unresolved variables. The default value for a variable can be appended to the variable name after the variable default value delimiter. The default value of the "variable default value delimiter" is :-, as in Bash and other *nix shells, as those are arguably where the default ${} delimiter set originated.
The list variable values used are taken from the underlying Martini application properties. Properties in the override file are checked first, then the standard properties file, then the JVM system properties.
The following shows an example with variable default value settings:
String templateString = StringMethods.substitute( "The ${animal} jumped over the ${target}. ${undefined.number:-1234567890}." );
Resulting in:The quick brown fox jumped over the lazy dog. 1234567890.
- Parameters:
tokenisedObject
- the source object- Returns:
- the resulting, parsed string
-
substituteAsInt
public static int substituteAsInt(Object tokenisedObject) throws NumberFormatException
Uses
substitute(Object)
to substitute variables in the source object, but attempts to parse the result as anint
.- Parameters:
tokenisedObject
- the source object- Returns:
- the resulting integer
- Throws:
NumberFormatException
- when the result of the expression can't be parsed as an integer
-
substituteAsInt
public static int substituteAsInt(Object tokenisedObject, int defaultValue)
Uses
substitute(Object)
to substitute variables in the source object, but attempts to parse the result as anint
. If the result could not be parsed as an integer, the default value is returned.- Parameters:
tokenisedObject
- the source objectdefaultValue
- the value to return if the result could not be parsed as an integer- Returns:
- the resulting integer; or
defaultValue
if the result could not be parsed as an integer
-
substituteAsBoolean
public static boolean substituteAsBoolean(Object tokenisedObject)
Uses
substitute(Object)
to substitute variables in the source object, then checks whether or not the result is equal to true (case insensitive).- Parameters:
tokenisedObject
- the source object- Returns:
- true if the resulting string is equal to true; false otherwise
-
split
public static String[] split(String str, String regex)
Splits this string around matches of the given regular expression Note: This method was overridden to prevent accidental usage ofStringUtils.split(String, String)
overString.split(String)
when used as a one-liner.- Parameters:
regex
- the delimiting regular expression- Returns:
- the array of strings computed by splitting this string around matches of the given regular expression
- Throws:
PatternSyntaxException
- if the regular expression's syntax is invalid
-
-