Package gw.util

Class GosuStringUtil

    • Constructor Detail

      • GosuStringUtil

        public GosuStringUtil()
    • Method Detail

      • tokenize

        public static String[] tokenize​(String s,
                                        char separator)
        Split up a string into tokens delimited by the specified separator character. If the string is null or zero length, returns null.
        Parameters:
        s - The String to tokenize
        separator - The character delimiting tokens
        Returns:
        An ArrayList of String tokens, or null is s is null or 0 length.
      • isEmpty

        public static boolean isEmpty​(String str)

        Checks if a String is empty ("") or null.

         StringUtils.isEmpty(null)      = true
         StringUtils.isEmpty("")        = true
         StringUtils.isEmpty(" ")       = false
         StringUtils.isEmpty("bob")     = false
         StringUtils.isEmpty("  bob  ") = false
         

        NOTE: This method changed in Lang version 2.0. It no longer trims the String. That functionality is available in isBlank().

        Parameters:
        str - the String to check, may be null
        Returns:
        true if the String is empty or null
      • isNotEmpty

        public static boolean isNotEmpty​(String str)

        Checks if a String is not empty ("") and not null.

         StringUtils.isNotEmpty(null)      = false
         StringUtils.isNotEmpty("")        = false
         StringUtils.isNotEmpty(" ")       = true
         StringUtils.isNotEmpty("bob")     = true
         StringUtils.isNotEmpty("  bob  ") = true
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if the String is not empty and not null
      • isBlank

        public static boolean isBlank​(String str)

        Checks if a String is whitespace, empty ("") or null.

         GosuStringUtil.isBlank(null)      = true
         GosuStringUtil.isBlank("")        = true
         GosuStringUtil.isBlank(" ")       = true
         GosuStringUtil.isBlank("bob")     = false
         GosuStringUtil.isBlank("  bob  ") = false
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if the String is null, empty or whitespace
        Since:
        2.0
      • isNotBlank

        public static boolean isNotBlank​(String str)

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

         GosuStringUtil.isNotBlank(null)      = false
         GosuStringUtil.isNotBlank("")        = false
         GosuStringUtil.isNotBlank(" ")       = false
         GosuStringUtil.isNotBlank("bob")     = true
         GosuStringUtil.isNotBlank("  bob  ") = true
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if the String is not empty and not null and not whitespace
        Since:
        2.0
      • clean

        public static String clean​(String str)
        Deprecated.
        Use the clearer named trimToEmpty(String). Method will be removed in Commons Lang 3.0.

        Removes control characters (char <= 32) from both ends of this String, handling null by returning an empty String ("").

         GosuStringUtil.clean(null)          = ""
         GosuStringUtil.clean("")            = ""
         GosuStringUtil.clean("abc")         = "abc"
         GosuStringUtil.clean("    abc    ") = "abc"
         GosuStringUtil.clean("     ")       = ""
         
        Parameters:
        str - the String to clean, may be null
        Returns:
        the trimmed text, never null
        See Also:
        String.trim()
      • trim

        public static String trim​(String str)

        Removes control characters (char <= 32) from both ends of this String, handling null by returning null.

        The String is trimmed using String.trim(). Trim removes start and end characters <= 32. To strip whitespace use strip(String).

        To trim your choice of characters, use the strip(String, String) methods.

         GosuStringUtil.trim(null)          = null
         GosuStringUtil.trim("")            = ""
         GosuStringUtil.trim("     ")       = ""
         GosuStringUtil.trim("abc")         = "abc"
         GosuStringUtil.trim("    abc    ") = "abc"
         
        Parameters:
        str - the String to be trimmed, may be null
        Returns:
        the trimmed string, null if null String input
      • trimToNull

        public static String trimToNull​(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.

        The String is trimmed using String.trim(). Trim removes start and end characters <= 32. To strip whitespace use stripToNull(String).

         GosuStringUtil.trimToNull(null)          = null
         GosuStringUtil.trimToNull("")            = null
         GosuStringUtil.trimToNull("     ")       = null
         GosuStringUtil.trimToNull("abc")         = "abc"
         GosuStringUtil.trimToNull("    abc    ") = "abc"
         
        Parameters:
        str - the String to be trimmed, may be null
        Returns:
        the trimmed String, null if only chars <= 32, empty or null String input
        Since:
        2.0
      • trimToEmpty

        public static String trimToEmpty​(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.

        The String is trimmed using String.trim(). Trim removes start and end characters <= 32. To strip whitespace use stripToEmpty(String).

         GosuStringUtil.trimToEmpty(null)          = ""
         GosuStringUtil.trimToEmpty("")            = ""
         GosuStringUtil.trimToEmpty("     ")       = ""
         GosuStringUtil.trimToEmpty("abc")         = "abc"
         GosuStringUtil.trimToEmpty("    abc    ") = "abc"
         
        Parameters:
        str - the String to be trimmed, may be null
        Returns:
        the trimmed String, or an empty String if null input
        Since:
        2.0
      • strip

        public static String strip​(String str)

        Strips whitespace from the start and end of a String.

        This is similar to trim(String) but removes whitespace. Whitespace is defined by Character.isWhitespace(char).

        A null input String returns null.

         GosuStringUtil.strip(null)     = null
         GosuStringUtil.strip("")       = ""
         GosuStringUtil.strip("   ")    = ""
         GosuStringUtil.strip("abc")    = "abc"
         GosuStringUtil.strip("  abc")  = "abc"
         GosuStringUtil.strip("abc  ")  = "abc"
         GosuStringUtil.strip(" abc ")  = "abc"
         GosuStringUtil.strip(" ab c ") = "ab c"
         
        Parameters:
        str - the String to remove whitespace from, may be null
        Returns:
        the stripped String, null if null String input
      • stripToNull

        public static String stripToNull​(String str)

        Strips whitespace from the start and end of a String returning null if the String is empty ("") after the strip.

        This is similar to trimToNull(String) but removes whitespace. Whitespace is defined by Character.isWhitespace(char).

         GosuStringUtil.stripToNull(null)     = null
         GosuStringUtil.stripToNull("")       = null
         GosuStringUtil.stripToNull("   ")    = null
         GosuStringUtil.stripToNull("abc")    = "abc"
         GosuStringUtil.stripToNull("  abc")  = "abc"
         GosuStringUtil.stripToNull("abc  ")  = "abc"
         GosuStringUtil.stripToNull(" abc ")  = "abc"
         GosuStringUtil.stripToNull(" ab c ") = "ab c"
         
        Parameters:
        str - the String to be stripped, may be null
        Returns:
        the stripped String, null if whitespace, empty or null String input
        Since:
        2.0
      • stripToEmpty

        public static String stripToEmpty​(String str)

        Strips whitespace from the start and end of a String returning an empty String if null input.

        This is similar to trimToEmpty(String) but removes whitespace. Whitespace is defined by Character.isWhitespace(char).

         GosuStringUtil.stripToEmpty(null)     = ""
         GosuStringUtil.stripToEmpty("")       = ""
         GosuStringUtil.stripToEmpty("   ")    = ""
         GosuStringUtil.stripToEmpty("abc")    = "abc"
         GosuStringUtil.stripToEmpty("  abc")  = "abc"
         GosuStringUtil.stripToEmpty("abc  ")  = "abc"
         GosuStringUtil.stripToEmpty(" abc ")  = "abc"
         GosuStringUtil.stripToEmpty(" ab c ") = "ab c"
         
        Parameters:
        str - the String to be stripped, may be null
        Returns:
        the trimmed String, or an empty String if null input
        Since:
        2.0
      • strip

        public static String strip​(String str,
                                   String stripChars)

        Strips any of a set of characters from the start and end of a String. This is similar to String.trim() but allows the characters to be stripped to be controlled.

        A null input String returns null. An empty string ("") input returns the empty string.

        If the stripChars String is null, whitespace is stripped as defined by Character.isWhitespace(char). Alternatively use strip(String).

         GosuStringUtil.strip(null, *)          = null
         GosuStringUtil.strip("", *)            = ""
         GosuStringUtil.strip("abc", null)      = "abc"
         GosuStringUtil.strip("  abc", null)    = "abc"
         GosuStringUtil.strip("abc  ", null)    = "abc"
         GosuStringUtil.strip(" abc ", null)    = "abc"
         GosuStringUtil.strip("  abcyx", "xyz") = "  abc"
         
        Parameters:
        str - the String to remove characters from, may be null
        stripChars - the characters to remove, null treated as whitespace
        Returns:
        the stripped String, null if null String input
      • stripStart

        public static String stripStart​(String str,
                                        String stripChars)

        Strips any of a set of characters from the start of a String.

        A null input String returns null. An empty string ("") input returns the empty string.

        If the stripChars String is null, whitespace is stripped as defined by Character.isWhitespace(char).

         GosuStringUtil.stripStart(null, *)          = null
         GosuStringUtil.stripStart("", *)            = ""
         GosuStringUtil.stripStart("abc", "")        = "abc"
         GosuStringUtil.stripStart("abc", null)      = "abc"
         GosuStringUtil.stripStart("  abc", null)    = "abc"
         GosuStringUtil.stripStart("abc  ", null)    = "abc  "
         GosuStringUtil.stripStart(" abc ", null)    = "abc "
         GosuStringUtil.stripStart("yxabc  ", "xyz") = "abc  "
         
        Parameters:
        str - the String to remove characters from, may be null
        stripChars - the characters to remove, null treated as whitespace
        Returns:
        the stripped String, null if null String input
      • stripEnd

        public static String stripEnd​(String str,
                                      String stripChars)

        Strips any of a set of characters from the end of a String.

        A null input String returns null. An empty string ("") input returns the empty string.

        If the stripChars String is null, whitespace is stripped as defined by Character.isWhitespace(char).

         GosuStringUtil.stripEnd(null, *)          = null
         GosuStringUtil.stripEnd("", *)            = ""
         GosuStringUtil.stripEnd("abc", "")        = "abc"
         GosuStringUtil.stripEnd("abc", null)      = "abc"
         GosuStringUtil.stripEnd("  abc", null)    = "  abc"
         GosuStringUtil.stripEnd("abc  ", null)    = "abc"
         GosuStringUtil.stripEnd(" abc ", null)    = " abc"
         GosuStringUtil.stripEnd("  abcyx", "xyz") = "  abc"
         
        Parameters:
        str - the String to remove characters from, may be null
        stripChars - the characters to remove, null treated as whitespace
        Returns:
        the stripped String, null if null String input
      • stripAll

        public static String[] stripAll​(String[] strs)

        Strips whitespace from the start and end of every String in an array. Whitespace is defined by Character.isWhitespace(char).

        A new array is returned each time, except for length zero. A null array will return null. An empty array will return itself. A null array entry will be ignored.

         GosuStringUtil.stripAll(null)             = null
         GosuStringUtil.stripAll([])               = []
         GosuStringUtil.stripAll(["abc", "  abc"]) = ["abc", "abc"]
         GosuStringUtil.stripAll(["abc  ", null])  = ["abc", null]
         
        Parameters:
        strs - the array to remove whitespace from, may be null
        Returns:
        the stripped Strings, null if null array input
      • stripAll

        public static String[] stripAll​(String[] strs,
                                        String stripChars)

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

        Whitespace is defined by Character.isWhitespace(char).

        A new array is returned each time, except for length zero. A null array will return null. An empty array will return itself. A null array entry will be ignored. A null stripChars will strip whitespace as defined by Character.isWhitespace(char).

         GosuStringUtil.stripAll(null, *)                = null
         GosuStringUtil.stripAll([], *)                  = []
         GosuStringUtil.stripAll(["abc", "  abc"], null) = ["abc", "abc"]
         GosuStringUtil.stripAll(["abc  ", null], null)  = ["abc", null]
         GosuStringUtil.stripAll(["abc  ", null], "yz")  = ["abc  ", null]
         GosuStringUtil.stripAll(["yabcz", null], "yz")  = ["abc", null]
         
        Parameters:
        strs - the array to remove characters from, may be null
        stripChars - the characters to remove, null treated as whitespace
        Returns:
        the stripped Strings, null if null array input
      • equals

        public static boolean equals​(String str1,
                                     String str2)

        Compares two Strings, returning true if they are equal.

        nulls are handled without exceptions. Two null references are considered to be equal. The comparison is case sensitive.

         GosuStringUtil.equals(null, null)   = true
         GosuStringUtil.equals(null, "abc")  = false
         GosuStringUtil.equals("abc", null)  = false
         GosuStringUtil.equals("abc", "abc") = true
         GosuStringUtil.equals("abc", "ABC") = false
         
        Parameters:
        str1 - the first String, may be null
        str2 - the second String, may be null
        Returns:
        true if the Strings are equal, case sensitive, or both null
        See Also:
        String.equals(Object)
      • equalsIgnoreCase

        public static boolean equalsIgnoreCase​(String str1,
                                               String str2)

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

        nulls are handled without exceptions. Two null references are considered equal. Comparison is case insensitive.

         GosuStringUtil.equalsIgnoreCase(null, null)   = true
         GosuStringUtil.equalsIgnoreCase(null, "abc")  = false
         GosuStringUtil.equalsIgnoreCase("abc", null)  = false
         GosuStringUtil.equalsIgnoreCase("abc", "abc") = true
         GosuStringUtil.equalsIgnoreCase("abc", "ABC") = true
         
        Parameters:
        str1 - the first String, may be null
        str2 - the second String, may be null
        Returns:
        true if the Strings are equal, case insensitive, or both null
        See Also:
        String.equalsIgnoreCase(String)
      • indexOf

        public static int indexOf​(String str,
                                  char searchChar)

        Finds the first index within a String, handling null. This method uses String.indexOf(int).

        A null or empty ("") String will return -1.

         GosuStringUtil.indexOf(null, *)         = -1
         GosuStringUtil.indexOf("", *)           = -1
         GosuStringUtil.indexOf("aabaabaa", 'a') = 0
         GosuStringUtil.indexOf("aabaabaa", 'b') = 2
         
        Parameters:
        str - the String to check, may be null
        searchChar - the character to find
        Returns:
        the first index of the search character, -1 if no match or null string input
        Since:
        2.0
      • indexOf

        public static int indexOf​(String str,
                                  char searchChar,
                                  int startPos)

        Finds the first index within a String from a start position, handling null. This method uses String.indexOf(int, int).

        A null or empty ("") String will return -1. A negative start position is treated as zero. A start position greater than the string length returns -1.

         GosuStringUtil.indexOf(null, *, *)          = -1
         GosuStringUtil.indexOf("", *, *)            = -1
         GosuStringUtil.indexOf("aabaabaa", 'b', 0)  = 2
         GosuStringUtil.indexOf("aabaabaa", 'b', 3)  = 5
         GosuStringUtil.indexOf("aabaabaa", 'b', 9)  = -1
         GosuStringUtil.indexOf("aabaabaa", 'b', -1) = 2
         
        Parameters:
        str - the String to check, may be null
        searchChar - the character to find
        startPos - the start position, negative treated as zero
        Returns:
        the first index of the search character, -1 if no match or null string input
        Since:
        2.0
      • indexOf

        public static int indexOf​(String str,
                                  String searchStr)

        Finds the first index within a String, handling null. This method uses String.indexOf(String).

        A null String will return -1.

         GosuStringUtil.indexOf(null, *)          = -1
         GosuStringUtil.indexOf(*, null)          = -1
         GosuStringUtil.indexOf("", "")           = 0
         GosuStringUtil.indexOf("aabaabaa", "a")  = 0
         GosuStringUtil.indexOf("aabaabaa", "b")  = 2
         GosuStringUtil.indexOf("aabaabaa", "ab") = 1
         GosuStringUtil.indexOf("aabaabaa", "")   = 0
         
        Parameters:
        str - the String to check, may be null
        searchStr - the String to find, may be null
        Returns:
        the first index of the search String, -1 if no match or null string input
        Since:
        2.0
      • ordinalIndexOf

        public static int ordinalIndexOf​(String str,
                                         String searchStr,
                                         int ordinal)

        Finds the n-th index within a String, handling null. This method uses String.indexOf(String).

        A null String will return -1.

         GosuStringUtil.ordinalIndexOf(null, *, *)          = -1
         GosuStringUtil.ordinalIndexOf(*, null, *)          = -1
         GosuStringUtil.ordinalIndexOf("", "", *)           = 0
         GosuStringUtil.ordinalIndexOf("aabaabaa", "a", 1)  = 0
         GosuStringUtil.ordinalIndexOf("aabaabaa", "a", 2)  = 1
         GosuStringUtil.ordinalIndexOf("aabaabaa", "b", 1)  = 2
         GosuStringUtil.ordinalIndexOf("aabaabaa", "b", 2)  = 5
         GosuStringUtil.ordinalIndexOf("aabaabaa", "ab", 1) = 1
         GosuStringUtil.ordinalIndexOf("aabaabaa", "ab", 2) = 4
         GosuStringUtil.ordinalIndexOf("aabaabaa", "", 1)   = 0
         GosuStringUtil.ordinalIndexOf("aabaabaa", "", 2)   = 0
         
        Parameters:
        str - the String to check, may be null
        searchStr - the String to find, may be null
        ordinal - the n-th searchStr to find
        Returns:
        the n-th index of the search String, -1 (INDEX_NOT_FOUND) if no match or null string input
        Since:
        2.1
      • indexOf

        public static int indexOf​(String str,
                                  String searchStr,
                                  int startPos)

        Finds the first index within a String, handling null. This method uses String.indexOf(String, int).

        A null String will return -1. A negative start position is treated as zero. An empty ("") search String always matches. A start position greater than the string length only matches an empty search String.

         GosuStringUtil.indexOf(null, *, *)          = -1
         GosuStringUtil.indexOf(*, null, *)          = -1
         GosuStringUtil.indexOf("", "", 0)           = 0
         GosuStringUtil.indexOf("aabaabaa", "a", 0)  = 0
         GosuStringUtil.indexOf("aabaabaa", "b", 0)  = 2
         GosuStringUtil.indexOf("aabaabaa", "ab", 0) = 1
         GosuStringUtil.indexOf("aabaabaa", "b", 3)  = 5
         GosuStringUtil.indexOf("aabaabaa", "b", 9)  = -1
         GosuStringUtil.indexOf("aabaabaa", "b", -1) = 2
         GosuStringUtil.indexOf("aabaabaa", "", 2)   = 2
         GosuStringUtil.indexOf("abc", "", 9)        = 3
         
        Parameters:
        str - the String to check, may be null
        searchStr - the String to find, may be null
        startPos - the start position, negative treated as zero
        Returns:
        the first index of the search String, -1 if no match or null string input
        Since:
        2.0
      • lastIndexOf

        public static int lastIndexOf​(String str,
                                      char searchChar)

        Finds the last index within a String, handling null. This method uses String.lastIndexOf(int).

        A null or empty ("") String will return -1.

         GosuStringUtil.lastIndexOf(null, *)         = -1
         GosuStringUtil.lastIndexOf("", *)           = -1
         GosuStringUtil.lastIndexOf("aabaabaa", 'a') = 7
         GosuStringUtil.lastIndexOf("aabaabaa", 'b') = 5
         
        Parameters:
        str - the String to check, may be null
        searchChar - the character to find
        Returns:
        the last index of the search character, -1 if no match or null string input
        Since:
        2.0
      • lastIndexOf

        public static int lastIndexOf​(String str,
                                      char searchChar,
                                      int startPos)

        Finds the last index within a String from a start position, handling null. This method uses String.lastIndexOf(int, int).

        A null or empty ("") String will return -1. A negative start position returns -1. A start position greater than the string length searches the whole string.

         GosuStringUtil.lastIndexOf(null, *, *)          = -1
         GosuStringUtil.lastIndexOf("", *,  *)           = -1
         GosuStringUtil.lastIndexOf("aabaabaa", 'b', 8)  = 5
         GosuStringUtil.lastIndexOf("aabaabaa", 'b', 4)  = 2
         GosuStringUtil.lastIndexOf("aabaabaa", 'b', 0)  = -1
         GosuStringUtil.lastIndexOf("aabaabaa", 'b', 9)  = 5
         GosuStringUtil.lastIndexOf("aabaabaa", 'b', -1) = -1
         GosuStringUtil.lastIndexOf("aabaabaa", 'a', 0)  = 0
         
        Parameters:
        str - the String to check, may be null
        searchChar - the character to find
        startPos - the start position
        Returns:
        the last index of the search character, -1 if no match or null string input
        Since:
        2.0
      • lastIndexOf

        public static int lastIndexOf​(String str,
                                      String searchStr)

        Finds the last index within a String, handling null. This method uses String.lastIndexOf(String).

        A null String will return -1.

         GosuStringUtil.lastIndexOf(null, *)          = -1
         GosuStringUtil.lastIndexOf(*, null)          = -1
         GosuStringUtil.lastIndexOf("", "")           = 0
         GosuStringUtil.lastIndexOf("aabaabaa", "a")  = 0
         GosuStringUtil.lastIndexOf("aabaabaa", "b")  = 2
         GosuStringUtil.lastIndexOf("aabaabaa", "ab") = 1
         GosuStringUtil.lastIndexOf("aabaabaa", "")   = 8
         
        Parameters:
        str - the String to check, may be null
        searchStr - the String to find, may be null
        Returns:
        the last index of the search String, -1 if no match or null string input
        Since:
        2.0
      • lastIndexOf

        public static int lastIndexOf​(String str,
                                      String searchStr,
                                      int startPos)

        Finds the first index within a String, handling null. This method uses String.lastIndexOf(String, int).

        A null String will return -1. A negative start position returns -1. An empty ("") search String always matches unless the start position is negative. A start position greater than the string length searches the whole string.

         GosuStringUtil.lastIndexOf(null, *, *)          = -1
         GosuStringUtil.lastIndexOf(*, null, *)          = -1
         GosuStringUtil.lastIndexOf("aabaabaa", "a", 8)  = 7
         GosuStringUtil.lastIndexOf("aabaabaa", "b", 8)  = 5
         GosuStringUtil.lastIndexOf("aabaabaa", "ab", 8) = 4
         GosuStringUtil.lastIndexOf("aabaabaa", "b", 9)  = 5
         GosuStringUtil.lastIndexOf("aabaabaa", "b", -1) = -1
         GosuStringUtil.lastIndexOf("aabaabaa", "a", 0)  = 0
         GosuStringUtil.lastIndexOf("aabaabaa", "b", 0)  = -1
         
        Parameters:
        str - the String to check, may be null
        searchStr - the String to find, may be null
        startPos - the start position, negative treated as zero
        Returns:
        the first index of the search String, -1 if no match or null string input
        Since:
        2.0
      • contains

        public static boolean contains​(String str,
                                       char searchChar)

        Checks if String contains a search character, handling null. This method uses String.indexOf(int).

        A null or empty ("") String will return false.

         GosuStringUtil.contains(null, *)    = false
         GosuStringUtil.contains("", *)      = false
         GosuStringUtil.contains("abc", 'a') = true
         GosuStringUtil.contains("abc", 'z') = false
         
        Parameters:
        str - the String to check, may be null
        searchChar - the character to find
        Returns:
        true if the String contains the search character, false if not or null string input
        Since:
        2.0
      • contains

        public static boolean contains​(String str,
                                       String searchStr)

        Checks if String contains a search String, handling null. This method uses String.indexOf(String).

        A null String will return false.

         GosuStringUtil.contains(null, *)     = false
         GosuStringUtil.contains(*, null)     = false
         GosuStringUtil.contains("", "")      = true
         GosuStringUtil.contains("abc", "")   = true
         GosuStringUtil.contains("abc", "a")  = true
         GosuStringUtil.contains("abc", "z")  = false
         
        Parameters:
        str - the String to check, may be null
        searchStr - the String to find, may be null
        Returns:
        true if the String contains the search String, false if not or null string input
        Since:
        2.0
      • containsIgnoreCase

        public static boolean containsIgnoreCase​(String str,
                                                 String searchStr)

        Checks if String contains a search String irrespective of case, handling null. This method uses contains(String, String).

        A null String will return false.

         GosuStringUtil.contains(null, *) = false
         GosuStringUtil.contains(*, null) = false
         GosuStringUtil.contains("", "") = true
         GosuStringUtil.contains("abc", "") = true
         GosuStringUtil.contains("abc", "a") = true
         GosuStringUtil.contains("abc", "z") = false
         GosuStringUtil.contains("abc", "A") = true
         GosuStringUtil.contains("abc", "Z") = false
         
        Parameters:
        str - the String to check, may be null
        searchStr - the String to find, may be null
        Returns:
        true if the String contains the search String irrespective of case or false if not or null string input
      • indexOfAny

        public static int indexOfAny​(String str,
                                     char[] searchChars)

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

        A null String will return -1. A null or zero length search array will return -1.

         GosuStringUtil.indexOfAny(null, *)                = -1
         GosuStringUtil.indexOfAny("", *)                  = -1
         GosuStringUtil.indexOfAny(*, null)                = -1
         GosuStringUtil.indexOfAny(*, [])                  = -1
         GosuStringUtil.indexOfAny("zzabyycdxx",['z','a']) = 0
         GosuStringUtil.indexOfAny("zzabyycdxx",['b','y']) = 3
         GosuStringUtil.indexOfAny("aba", ['z'])           = -1
         
        Parameters:
        str - the String to check, may be null
        searchChars - the chars to search for, may be null
        Returns:
        the index of any of the chars, -1 if no match or null input
        Since:
        2.0
      • indexOfAny

        public static int indexOfAny​(String str,
                                     String searchChars)

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

        A null String will return -1. A null search string will return -1.

         GosuStringUtil.indexOfAny(null, *)            = -1
         GosuStringUtil.indexOfAny("", *)              = -1
         GosuStringUtil.indexOfAny(*, null)            = -1
         GosuStringUtil.indexOfAny(*, "")              = -1
         GosuStringUtil.indexOfAny("zzabyycdxx", "za") = 0
         GosuStringUtil.indexOfAny("zzabyycdxx", "by") = 3
         GosuStringUtil.indexOfAny("aba","z")          = -1
         
        Parameters:
        str - the String to check, may be null
        searchChars - the chars to search for, may be null
        Returns:
        the index of any of the chars, -1 if no match or null input
        Since:
        2.0
      • containsAny

        public static boolean containsAny​(String str,
                                          char[] searchChars)

        Checks if the String contains any character in the given set of characters.

        A null String will return false. A null or zero length search array will return false.

         GosuStringUtil.containsAny(null, *)                = false
         GosuStringUtil.containsAny("", *)                  = false
         GosuStringUtil.containsAny(*, null)                = false
         GosuStringUtil.containsAny(*, [])                  = false
         GosuStringUtil.containsAny("zzabyycdxx",['z','a']) = true
         GosuStringUtil.containsAny("zzabyycdxx",['b','y']) = true
         GosuStringUtil.containsAny("aba", ['z'])           = false
         
        Parameters:
        str - the String to check, may be null
        searchChars - the chars to search for, may be null
        Returns:
        the true if any of the chars are found, false if no match or null input
        Since:
        2.4
      • containsAny

        public static boolean containsAny​(String str,
                                          String searchChars)

        Checks if the String contains any character in the given set of characters.

        A null String will return false. A null search string will return false.

         GosuStringUtil.containsAny(null, *)            = false
         GosuStringUtil.containsAny("", *)              = false
         GosuStringUtil.containsAny(*, null)            = false
         GosuStringUtil.containsAny(*, "")              = false
         GosuStringUtil.containsAny("zzabyycdxx", "za") = true
         GosuStringUtil.containsAny("zzabyycdxx", "by") = true
         GosuStringUtil.containsAny("aba","z")          = false
         
        Parameters:
        str - the String to check, may be null
        searchChars - the chars to search for, may be null
        Returns:
        the true if any of the chars are found, false if no match or null input
        Since:
        2.4
      • indexOfAnyBut

        public static int indexOfAnyBut​(String str,
                                        char[] searchChars)

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

        A null String will return -1. A null or zero length search array will return -1.

         GosuStringUtil.indexOfAnyBut(null, *)           = -1
         GosuStringUtil.indexOfAnyBut("", *)             = -1
         GosuStringUtil.indexOfAnyBut(*, null)           = -1
         GosuStringUtil.indexOfAnyBut(*, [])             = -1
         GosuStringUtil.indexOfAnyBut("zzabyycdxx",'za') = 3
         GosuStringUtil.indexOfAnyBut("zzabyycdxx", '')  = 0
         GosuStringUtil.indexOfAnyBut("aba", 'ab')       = -1
         
        Parameters:
        str - the String to check, may be null
        searchChars - the chars to search for, may be null
        Returns:
        the index of any of the chars, -1 if no match or null input
        Since:
        2.0
      • indexOfAnyBut

        public static int indexOfAnyBut​(String str,
                                        String searchChars)

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

        A null String will return -1. A null search string will return -1.

         GosuStringUtil.indexOfAnyBut(null, *)            = -1
         GosuStringUtil.indexOfAnyBut("", *)              = -1
         GosuStringUtil.indexOfAnyBut(*, null)            = -1
         GosuStringUtil.indexOfAnyBut(*, "")              = -1
         GosuStringUtil.indexOfAnyBut("zzabyycdxx", "za") = 3
         GosuStringUtil.indexOfAnyBut("zzabyycdxx", "")   = 0
         GosuStringUtil.indexOfAnyBut("aba","ab")         = -1
         
        Parameters:
        str - the String to check, may be null
        searchChars - the chars to search for, may be null
        Returns:
        the index of any of the chars, -1 if no match or null input
        Since:
        2.0
      • containsOnly

        public static boolean containsOnly​(String str,
                                           char[] valid)

        Checks if the String contains only certain characters.

        A null String will return false. A null valid character array will return false. An empty String ("") always returns true.

         GosuStringUtil.containsOnly(null, *)       = false
         GosuStringUtil.containsOnly(*, null)       = false
         GosuStringUtil.containsOnly("", *)         = true
         GosuStringUtil.containsOnly("ab", '')      = false
         GosuStringUtil.containsOnly("abab", 'abc') = true
         GosuStringUtil.containsOnly("ab1", 'abc')  = false
         GosuStringUtil.containsOnly("abz", 'abc')  = false
         
        Parameters:
        str - the String to check, may be null
        valid - an array of valid chars, may be null
        Returns:
        true if it only contains valid chars and is non-null
      • containsOnly

        public static boolean containsOnly​(String str,
                                           String validChars)

        Checks if the String contains only certain characters.

        A null String will return false. A null valid character String will return false. An empty String ("") always returns true.

         GosuStringUtil.containsOnly(null, *)       = false
         GosuStringUtil.containsOnly(*, null)       = false
         GosuStringUtil.containsOnly("", *)         = true
         GosuStringUtil.containsOnly("ab", "")      = false
         GosuStringUtil.containsOnly("abab", "abc") = true
         GosuStringUtil.containsOnly("ab1", "abc")  = false
         GosuStringUtil.containsOnly("abz", "abc")  = false
         
        Parameters:
        str - the String to check, may be null
        validChars - a String of valid chars, may be null
        Returns:
        true if it only contains valid chars and is non-null
        Since:
        2.0
      • containsNone

        public static boolean containsNone​(String str,
                                           char[] invalidChars)

        Checks that the String does not contain certain characters.

        A null String will return true. A null invalid character array will return true. An empty String ("") always returns true.

         GosuStringUtil.containsNone(null, *)       = true
         GosuStringUtil.containsNone(*, null)       = true
         GosuStringUtil.containsNone("", *)         = true
         GosuStringUtil.containsNone("ab", '')      = true
         GosuStringUtil.containsNone("abab", 'xyz') = true
         GosuStringUtil.containsNone("ab1", 'xyz')  = true
         GosuStringUtil.containsNone("abz", 'xyz')  = false
         
        Parameters:
        str - the String to check, may be null
        invalidChars - an array of invalid chars, may be null
        Returns:
        true if it contains none of the invalid chars, or is null
        Since:
        2.0
      • containsNone

        public static boolean containsNone​(String str,
                                           String invalidChars)

        Checks that the String does not contain certain characters.

        A null String will return true. A null invalid character array will return true. An empty String ("") always returns true.

         GosuStringUtil.containsNone(null, *)       = true
         GosuStringUtil.containsNone(*, null)       = true
         GosuStringUtil.containsNone("", *)         = true
         GosuStringUtil.containsNone("ab", "")      = true
         GosuStringUtil.containsNone("abab", "xyz") = true
         GosuStringUtil.containsNone("ab1", "xyz")  = true
         GosuStringUtil.containsNone("abz", "xyz")  = false
         
        Parameters:
        str - the String to check, may be null
        invalidChars - a String of invalid chars, may be null
        Returns:
        true if it contains none of the invalid chars, or is null
        Since:
        2.0
      • indexOfAny

        public static int indexOfAny​(String str,
                                     String[] searchStrs)

        Find the first index of any of a set of potential substrings.

        A null String will return -1. A null or zero length search array will return -1. A null search array entry will be ignored, but a search array containing "" will return 0 if str is not null. This method uses String.indexOf(String).

         GosuStringUtil.indexOfAny(null, *)                     = -1
         GosuStringUtil.indexOfAny(*, null)                     = -1
         GosuStringUtil.indexOfAny(*, [])                       = -1
         GosuStringUtil.indexOfAny("zzabyycdxx", ["ab","cd"])   = 2
         GosuStringUtil.indexOfAny("zzabyycdxx", ["cd","ab"])   = 2
         GosuStringUtil.indexOfAny("zzabyycdxx", ["mn","op"])   = -1
         GosuStringUtil.indexOfAny("zzabyycdxx", ["zab","aby"]) = 1
         GosuStringUtil.indexOfAny("zzabyycdxx", [""])          = 0
         GosuStringUtil.indexOfAny("", [""])                    = 0
         GosuStringUtil.indexOfAny("", ["a"])                   = -1
         
        Parameters:
        str - the String to check, may be null
        searchStrs - the Strings to search for, may be null
        Returns:
        the first index of any of the searchStrs in str, -1 if no match
      • lastIndexOfAny

        public static int lastIndexOfAny​(String str,
                                         String[] searchStrs)

        Find the latest index of any of a set of potential substrings.

        A null String will return -1. A null search array will return -1. A null or zero length search array entry will be ignored, but a search array containing "" will return the length of str if str is not null. This method uses String.indexOf(String)

         GosuStringUtil.lastIndexOfAny(null, *)                   = -1
         GosuStringUtil.lastIndexOfAny(*, null)                   = -1
         GosuStringUtil.lastIndexOfAny(*, [])                     = -1
         GosuStringUtil.lastIndexOfAny(*, [null])                 = -1
         GosuStringUtil.lastIndexOfAny("zzabyycdxx", ["ab","cd"]) = 6
         GosuStringUtil.lastIndexOfAny("zzabyycdxx", ["cd","ab"]) = 6
         GosuStringUtil.lastIndexOfAny("zzabyycdxx", ["mn","op"]) = -1
         GosuStringUtil.lastIndexOfAny("zzabyycdxx", ["mn","op"]) = -1
         GosuStringUtil.lastIndexOfAny("zzabyycdxx", ["mn",""])   = 10
         
        Parameters:
        str - the String to check, may be null
        searchStrs - the Strings to search for, may be null
        Returns:
        the last index of any of the Strings, -1 if no match
      • substring

        public static String substring​(String str,
                                       int start)

        Gets a substring from the specified String avoiding exceptions.

        A negative start position can be used to start n characters from the end of the String.

        A null String will return null. An empty ("") String will return "".

         GosuStringUtil.substring(null, *)   = null
         GosuStringUtil.substring("", *)     = ""
         GosuStringUtil.substring("abc", 0)  = "abc"
         GosuStringUtil.substring("abc", 2)  = "c"
         GosuStringUtil.substring("abc", 4)  = ""
         GosuStringUtil.substring("abc", -2) = "bc"
         GosuStringUtil.substring("abc", -4) = "abc"
         
        Parameters:
        str - the String to get the substring from, may be null
        start - the position to start from, negative means count back from the end of the String by this many characters
        Returns:
        substring from start position, null if null String input
      • substring

        public static String substring​(String str,
                                       int start,
                                       int end)

        Gets a substring from the specified String avoiding exceptions.

        A negative start position can be used to start/end n characters from the end of the String.

        The returned substring starts with the character in the start position and ends before the end position. All position counting is zero-based -- i.e., to start at the beginning of the string use start = 0. Negative start and end positions can be used to specify offsets relative to the end of the String.

        If start is not strictly to the left of end, "" is returned.

         GosuStringUtil.substring(null, *, *)    = null
         GosuStringUtil.substring("", * ,  *)    = "";
         GosuStringUtil.substring("abc", 0, 2)   = "ab"
         GosuStringUtil.substring("abc", 2, 0)   = ""
         GosuStringUtil.substring("abc", 2, 4)   = "c"
         GosuStringUtil.substring("abc", 4, 6)   = ""
         GosuStringUtil.substring("abc", 2, 2)   = ""
         GosuStringUtil.substring("abc", -2, -1) = "b"
         GosuStringUtil.substring("abc", -4, 2)  = "ab"
         
        Parameters:
        str - the String to get the substring from, may be null
        start - the position to start from, negative means count back from the end of the String by this many characters
        end - the position to end at (exclusive), negative means count back from the end of the String by this many characters
        Returns:
        substring from start position to end positon, null if null String input
      • left

        public static String left​(String str,
                                  int len)

        Gets the leftmost len characters of a String.

        If len characters are not available, or the String is null, the String will be returned without an exception. An exception is thrown if len is negative.

         GosuStringUtil.left(null, *)    = null
         GosuStringUtil.left(*, -ve)     = ""
         GosuStringUtil.left("", *)      = ""
         GosuStringUtil.left("abc", 0)   = ""
         GosuStringUtil.left("abc", 2)   = "ab"
         GosuStringUtil.left("abc", 4)   = "abc"
         
        Parameters:
        str - the String to get the leftmost characters from, may be null
        len - the length of the required String, must be zero or positive
        Returns:
        the leftmost characters, null if null String input
      • right

        public static String right​(String str,
                                   int len)

        Gets the rightmost len characters of a String.

        If len characters are not available, or the String is null, the String will be returned without an an exception. An exception is thrown if len is negative.

         GosuStringUtil.right(null, *)    = null
         GosuStringUtil.right(*, -ve)     = ""
         GosuStringUtil.right("", *)      = ""
         GosuStringUtil.right("abc", 0)   = ""
         GosuStringUtil.right("abc", 2)   = "bc"
         GosuStringUtil.right("abc", 4)   = "abc"
         
        Parameters:
        str - the String to get the rightmost characters from, may be null
        len - the length of the required String, must be zero or positive
        Returns:
        the rightmost characters, null if null String input
      • mid

        public static String mid​(String str,
                                 int pos,
                                 int len)

        Gets len characters from the middle of a String.

        If len characters are not available, the remainder of the String will be returned without an exception. If the String is null, null will be returned. An exception is thrown if len is negative.

         GosuStringUtil.mid(null, *, *)    = null
         GosuStringUtil.mid(*, *, -ve)     = ""
         GosuStringUtil.mid("", 0, *)      = ""
         GosuStringUtil.mid("abc", 0, 2)   = "ab"
         GosuStringUtil.mid("abc", 0, 4)   = "abc"
         GosuStringUtil.mid("abc", 2, 4)   = "c"
         GosuStringUtil.mid("abc", 4, 2)   = ""
         GosuStringUtil.mid("abc", -2, 2)  = "ab"
         
        Parameters:
        str - the String to get the characters from, may be null
        pos - the position to start from, negative treated as zero
        len - the length of the required String, must be zero or positive
        Returns:
        the middle characters, null if null String input
      • substringBefore

        public static String substringBefore​(String str,
                                             String separator)

        Gets the substring before the first occurrence of a separator. The separator is not returned.

        A null string input will return null. An empty ("") string input will return the empty string. A null separator will return the input string.

         GosuStringUtil.substringBefore(null, *)      = null
         GosuStringUtil.substringBefore("", *)        = ""
         GosuStringUtil.substringBefore("abc", "a")   = ""
         GosuStringUtil.substringBefore("abcba", "b") = "a"
         GosuStringUtil.substringBefore("abc", "c")   = "ab"
         GosuStringUtil.substringBefore("abc", "d")   = "abc"
         GosuStringUtil.substringBefore("abc", "")    = ""
         GosuStringUtil.substringBefore("abc", null)  = "abc"
         
        Parameters:
        str - the String to get a substring from, may be null
        separator - the String to search for, may be null
        Returns:
        the substring before the first occurrence of the separator, null if null String input
        Since:
        2.0
      • substringAfter

        public static String substringAfter​(String str,
                                            String separator)

        Gets the substring after the first occurrence of a separator. The separator is not returned.

        A null string input will return null. An empty ("") string input will return the empty string. A null separator will return the empty string if the input string is not null.

         GosuStringUtil.substringAfter(null, *)      = null
         GosuStringUtil.substringAfter("", *)        = ""
         GosuStringUtil.substringAfter(*, null)      = ""
         GosuStringUtil.substringAfter("abc", "a")   = "bc"
         GosuStringUtil.substringAfter("abcba", "b") = "cba"
         GosuStringUtil.substringAfter("abc", "c")   = ""
         GosuStringUtil.substringAfter("abc", "d")   = ""
         GosuStringUtil.substringAfter("abc", "")    = "abc"
         
        Parameters:
        str - the String to get a substring from, may be null
        separator - the String to search for, may be null
        Returns:
        the substring after the first occurrence of the separator, null if null String input
        Since:
        2.0
      • substringBeforeLast

        public static String substringBeforeLast​(String str,
                                                 String separator)

        Gets the substring before the last occurrence of a separator. The separator is not returned.

        A null string input will return null. An empty ("") string input will return the empty string. An empty or null separator will return the input string.

         GosuStringUtil.substringBeforeLast(null, *)      = null
         GosuStringUtil.substringBeforeLast("", *)        = ""
         GosuStringUtil.substringBeforeLast("abcba", "b") = "abc"
         GosuStringUtil.substringBeforeLast("abc", "c")   = "ab"
         GosuStringUtil.substringBeforeLast("a", "a")     = ""
         GosuStringUtil.substringBeforeLast("a", "z")     = "a"
         GosuStringUtil.substringBeforeLast("a", null)    = "a"
         GosuStringUtil.substringBeforeLast("a", "")      = "a"
         
        Parameters:
        str - the String to get a substring from, may be null
        separator - the String to search for, may be null
        Returns:
        the substring before the last occurrence of the separator, null if null String input
        Since:
        2.0
      • substringAfterLast

        public static String substringAfterLast​(String str,
                                                String separator)

        Gets the substring after the last occurrence of a separator. The separator is not returned.

        A null string input will return null. An empty ("") string input will return the empty string. An empty or null separator will return the empty string if the input string is not null.

         GosuStringUtil.substringAfterLast(null, *)      = null
         GosuStringUtil.substringAfterLast("", *)        = ""
         GosuStringUtil.substringAfterLast(*, "")        = ""
         GosuStringUtil.substringAfterLast(*, null)      = ""
         GosuStringUtil.substringAfterLast("abc", "a")   = "bc"
         GosuStringUtil.substringAfterLast("abcba", "b") = "a"
         GosuStringUtil.substringAfterLast("abc", "c")   = ""
         GosuStringUtil.substringAfterLast("a", "a")     = ""
         GosuStringUtil.substringAfterLast("a", "z")     = ""
         
        Parameters:
        str - the String to get a substring from, may be null
        separator - the String to search for, may be null
        Returns:
        the substring after the last occurrence of the separator, null if null String input
        Since:
        2.0
      • substringBetween

        public static String substringBetween​(String str,
                                              String tag)

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

        A null input String returns null. A null tag returns null.

         GosuStringUtil.substringBetween(null, *)            = null
         GosuStringUtil.substringBetween("", "")             = ""
         GosuStringUtil.substringBetween("", "tag")          = null
         GosuStringUtil.substringBetween("tagabctag", null)  = null
         GosuStringUtil.substringBetween("tagabctag", "")    = ""
         GosuStringUtil.substringBetween("tagabctag", "tag") = "abc"
         
        Parameters:
        str - the String containing the substring, may be null
        tag - the String before and after the substring, may be null
        Returns:
        the substring, null if no match
        Since:
        2.0
      • substringBetween

        public static String substringBetween​(String str,
                                              String open,
                                              String close)

        Gets the String that is nested in between two Strings. Only the first match is returned.

        A null input String returns null. A null open/close returns null (no match). An empty ("") open and close returns an empty string.

         GosuStringUtil.substringBetween("wx[b]yz", "[", "]") = "b"
         GosuStringUtil.substringBetween(null, *, *)          = null
         GosuStringUtil.substringBetween(*, null, *)          = null
         GosuStringUtil.substringBetween(*, *, null)          = null
         GosuStringUtil.substringBetween("", "", "")          = ""
         GosuStringUtil.substringBetween("", "", "]")         = null
         GosuStringUtil.substringBetween("", "[", "]")        = null
         GosuStringUtil.substringBetween("yabcz", "", "")     = ""
         GosuStringUtil.substringBetween("yabcz", "y", "z")   = "abc"
         GosuStringUtil.substringBetween("yabczyabcz", "y", "z")   = "abc"
         
        Parameters:
        str - the String containing the substring, may be null
        open - the String before the substring, may be null
        close - the String after the substring, may be null
        Returns:
        the substring, null if no match
        Since:
        2.0
      • substringsBetween

        public static String[] substringsBetween​(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.

        A null input String returns null. A null open/close returns null (no match). An empty ("") open/close returns null (no match).

         GosuStringUtil.substringsBetween("[a][b][c]", "[", "]") = ["a","b","c"]
         GosuStringUtil.substringsBetween(null, *, *)            = null
         GosuStringUtil.substringsBetween(*, null, *)            = null
         GosuStringUtil.substringsBetween(*, *, null)            = null
         GosuStringUtil.substringsBetween("", "[", "]")          = []
         
        Parameters:
        str - the String containing the substrings, null returns null, empty returns empty
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        Returns:
        a String Array of substrings, or null if no match
        Since:
        2.3
      • getNestedString

        public static String getNestedString​(String str,
                                             String tag)
        Deprecated.
        Use the better named substringBetween(String, String). Method will be removed in Commons Lang 3.0.

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

        A null input String returns null. A null tag returns null.

         GosuStringUtil.getNestedString(null, *)            = null
         GosuStringUtil.getNestedString("", "")             = ""
         GosuStringUtil.getNestedString("", "tag")          = null
         GosuStringUtil.getNestedString("tagabctag", null)  = null
         GosuStringUtil.getNestedString("tagabctag", "")    = ""
         GosuStringUtil.getNestedString("tagabctag", "tag") = "abc"
         
        Parameters:
        str - the String containing nested-string, may be null
        tag - the String before and after nested-string, may be null
        Returns:
        the nested String, null if no match
      • getNestedString

        public static String getNestedString​(String str,
                                             String open,
                                             String close)
        Deprecated.
        Use the better named substringBetween(String, String, String). Method will be removed in Commons Lang 3.0.

        Gets the String that is nested in between two Strings. Only the first match is returned.

        A null input String returns null. A null open/close returns null (no match). An empty ("") open/close returns an empty string.

         GosuStringUtil.getNestedString(null, *, *)          = null
         GosuStringUtil.getNestedString("", "", "")          = ""
         GosuStringUtil.getNestedString("", "", "tag")       = null
         GosuStringUtil.getNestedString("", "tag", "tag")    = null
         GosuStringUtil.getNestedString("yabcz", null, null) = null
         GosuStringUtil.getNestedString("yabcz", "", "")     = ""
         GosuStringUtil.getNestedString("yabcz", "y", "z")   = "abc"
         GosuStringUtil.getNestedString("yabczyabcz", "y", "z")   = "abc"
         
        Parameters:
        str - the String containing nested-string, may be null
        open - the String before nested-string, may be null
        close - the String after nested-string, may be null
        Returns:
        the nested String, null if no match
      • split

        public static String[] split​(String str)

        Splits the provided text into an array, using whitespace as the separator. Whitespace is defined by Character.isWhitespace(char).

        The separator is not included in the returned String array. Adjacent separators are treated as one separator. For more control over the split use the StrTokenizer class.

        A null input String returns null.

         GosuStringUtil.split(null)       = null
         GosuStringUtil.split("")         = []
         GosuStringUtil.split("abc def")  = ["abc", "def"]
         GosuStringUtil.split("abc  def") = ["abc", "def"]
         GosuStringUtil.split(" abc ")    = ["abc"]
         
        Parameters:
        str - the String to parse, may be null
        Returns:
        an array of parsed Strings, null if null String input
      • split

        public static String[] split​(String str,
                                     char separatorChar)

        Splits the provided text into an array, separator specified. This is an alternative to using StringTokenizer.

        The separator is not included in the returned String array. Adjacent separators are treated as one separator. For more control over the split use the StrTokenizer class.

        A null input String returns null.

         GosuStringUtil.split(null, *)         = null
         GosuStringUtil.split("", *)           = []
         GosuStringUtil.split("a.b.c", '.')    = ["a", "b", "c"]
         GosuStringUtil.split("a..b.c", '.')   = ["a", "b", "c"]
         GosuStringUtil.split("a:b:c", '.')    = ["a:b:c"]
         GosuStringUtil.split("a b c", ' ')    = ["a", "b", "c"]
         
        Parameters:
        str - the String to parse, may be null
        separatorChar - the character used as the delimiter
        Returns:
        an array of parsed Strings, null if null String input
        Since:
        2.0
      • split

        public static String[] split​(String str,
                                     String separatorChars)

        Splits the provided text into an array, separators specified. This is an alternative to using StringTokenizer.

        The separator is not included in the returned String array. Adjacent separators are treated as one separator. For more control over the split use the StrTokenizer class.

        A null input String returns null. A null separatorChars splits on whitespace.

         GosuStringUtil.split(null, *)         = null
         GosuStringUtil.split("", *)           = []
         GosuStringUtil.split("abc def", null) = ["abc", "def"]
         GosuStringUtil.split("abc def", " ")  = ["abc", "def"]
         GosuStringUtil.split("abc  def", " ") = ["abc", "def"]
         GosuStringUtil.split("ab:cd:ef", ":") = ["ab", "cd", "ef"]
         
        Parameters:
        str - the String to parse, may be null
        separatorChars - the characters used as the delimiters, null splits on whitespace
        Returns:
        an array of parsed Strings, null if null String input
      • split

        public static String[] split​(String str,
                                     String separatorChars,
                                     int max)

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

        The separator is not included in the returned String array. Adjacent separators are treated as one separator.

        A null input String returns null. A null separatorChars splits on whitespace.

        If more than max delimited substrings are found, the last returned string includes all characters after the first max - 1 returned strings (including separator characters).

         GosuStringUtil.split(null, *, *)            = null
         GosuStringUtil.split("", *, *)              = []
         GosuStringUtil.split("ab de fg", null, 0)   = ["ab", "cd", "ef"]
         GosuStringUtil.split("ab   de fg", null, 0) = ["ab", "cd", "ef"]
         GosuStringUtil.split("ab:cd:ef", ":", 0)    = ["ab", "cd", "ef"]
         GosuStringUtil.split("ab:cd:ef", ":", 2)    = ["ab", "cd:ef"]
         
        Parameters:
        str - the String to parse, may be null
        separatorChars - the characters used as the delimiters, null splits on whitespace
        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 null String input
      • splitByWholeSeparator

        public static String[] splitByWholeSeparator​(String str,
                                                     String separator)

        Splits the provided text into an array, separator string specified.

        The separator(s) will not be included in the returned String array. Adjacent separators are treated as one separator.

        A null input String returns null. A null separator splits on whitespace.

         GosuStringUtil.splitByWholeSeparator(null, *)               = null
         GosuStringUtil.splitByWholeSeparator("", *)                 = []
         GosuStringUtil.splitByWholeSeparator("ab de fg", null)      = ["ab", "de", "fg"]
         GosuStringUtil.splitByWholeSeparator("ab   de fg", null)    = ["ab", "de", "fg"]
         GosuStringUtil.splitByWholeSeparator("ab:cd:ef", ":")       = ["ab", "cd", "ef"]
         GosuStringUtil.splitByWholeSeparator("ab-!-cd-!-ef", "-!-") = ["ab", "cd", "ef"]
         
        Parameters:
        str - the String to parse, may be null
        separator - String containing the String to be used as a delimiter, null splits on whitespace
        Returns:
        an array of parsed Strings, null if null String was input
      • splitByWholeSeparator

        public static String[] splitByWholeSeparator​(String str,
                                                     String separator,
                                                     int max)

        Splits the provided text into an array, separator string specified. Returns a maximum of max substrings.

        The separator(s) will not be included in the returned String array. Adjacent separators are treated as one separator.

        A null input String returns null. A null separator splits on whitespace.

         GosuStringUtil.splitByWholeSeparator(null, *, *)               = null
         GosuStringUtil.splitByWholeSeparator("", *, *)                 = []
         GosuStringUtil.splitByWholeSeparator("ab de fg", null, 0)      = ["ab", "de", "fg"]
         GosuStringUtil.splitByWholeSeparator("ab   de fg", null, 0)    = ["ab", "de", "fg"]
         GosuStringUtil.splitByWholeSeparator("ab:cd:ef", ":", 2)       = ["ab", "cd:ef"]
         GosuStringUtil.splitByWholeSeparator("ab-!-cd-!-ef", "-!-", 5) = ["ab", "cd", "ef"]
         GosuStringUtil.splitByWholeSeparator("ab-!-cd-!-ef", "-!-", 2) = ["ab", "cd-!-ef"]
         
        Parameters:
        str - the String to parse, may be null
        separator - String containing the String to be used as a delimiter, null splits on whitespace
        max - the maximum number of elements to include in the returned array. A zero or negative value implies no limit.
        Returns:
        an array of parsed Strings, null if null String was input
      • splitByWholeSeparatorPreserveAllTokens

        public static String[] splitByWholeSeparatorPreserveAllTokens​(String str,
                                                                      String separator)

        Splits the provided text into an array, separator string specified.

        The separator is not included in the returned String array. Adjacent separators are treated as separators for empty tokens. For more control over the split use the StrTokenizer class.

        A null input String returns null. A null separator splits on whitespace.

         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens(null, *)               = null
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("", *)                 = []
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("ab de fg", null)      = ["ab", "de", "fg"]
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("ab   de fg", null)    = ["ab", "", "", "de", "fg"]
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("ab:cd:ef", ":")       = ["ab", "cd", "ef"]
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("ab-!-cd-!-ef", "-!-") = ["ab", "cd", "ef"]
         
        Parameters:
        str - the String to parse, may be null
        separator - String containing the String to be used as a delimiter, null splits on whitespace
        Returns:
        an array of parsed Strings, null if null String was input
        Since:
        2.4
      • splitByWholeSeparatorPreserveAllTokens

        public static String[] splitByWholeSeparatorPreserveAllTokens​(String str,
                                                                      String separator,
                                                                      int max)

        Splits the provided text into an array, separator string specified. Returns a maximum of max substrings.

        The separator is not included in the returned String array. Adjacent separators are treated as separators for empty tokens. For more control over the split use the StrTokenizer class.

        A null input String returns null. A null separator splits on whitespace.

         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens(null, *, *)               = null
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("", *, *)                 = []
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("ab de fg", null, 0)      = ["ab", "de", "fg"]
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("ab   de fg", null, 0)    = ["ab", "", "", "de", "fg"]
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("ab:cd:ef", ":", 2)       = ["ab", "cd:ef"]
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("ab-!-cd-!-ef", "-!-", 5) = ["ab", "cd", "ef"]
         GosuStringUtil.splitByWholeSeparatorPreserveAllTokens("ab-!-cd-!-ef", "-!-", 2) = ["ab", "cd-!-ef"]
         
        Parameters:
        str - the String to parse, may be null
        separator - String containing the String to be used as a delimiter, null splits on whitespace
        max - the maximum number of elements to include in the returned array. A zero or negative value implies no limit.
        Returns:
        an array of parsed Strings, null if null String was input
        Since:
        2.4
      • splitPreserveAllTokens

        public static String[] splitPreserveAllTokens​(String str)

        Splits the provided text into an array, using whitespace as the separator, preserving all tokens, including empty tokens created by adjacent separators. This is an alternative to using StringTokenizer. Whitespace is defined by Character.isWhitespace(char).

        The separator is not included in the returned String array. Adjacent separators are treated as separators for empty tokens. For more control over the split use the StrTokenizer class.

        A null input String returns null.

         GosuStringUtil.splitPreserveAllTokens(null)       = null
         GosuStringUtil.splitPreserveAllTokens("")         = []
         GosuStringUtil.splitPreserveAllTokens("abc def")  = ["abc", "def"]
         GosuStringUtil.splitPreserveAllTokens("abc  def") = ["abc", "", "def"]
         GosuStringUtil.splitPreserveAllTokens(" abc ")    = ["", "abc", ""]
         
        Parameters:
        str - the String to parse, may be null
        Returns:
        an array of parsed Strings, null if null String input
        Since:
        2.1
      • splitPreserveAllTokens

        public static String[] splitPreserveAllTokens​(String str,
                                                      char separatorChar)

        Splits the provided text into an array, separator specified, preserving all tokens, including empty tokens created by adjacent separators. This is an alternative to using StringTokenizer.

        The separator is not included in the returned String array. Adjacent separators are treated as separators for empty tokens. For more control over the split use the StrTokenizer class.

        A null input String returns null.

         GosuStringUtil.splitPreserveAllTokens(null, *)         = null
         GosuStringUtil.splitPreserveAllTokens("", *)           = []
         GosuStringUtil.splitPreserveAllTokens("a.b.c", '.')    = ["a", "b", "c"]
         GosuStringUtil.splitPreserveAllTokens("a..b.c", '.')   = ["a", "", "b", "c"]
         GosuStringUtil.splitPreserveAllTokens("a:b:c", '.')    = ["a:b:c"]
         GosuStringUtil.splitPreserveAllTokens("a\tb\nc", null) = ["a", "b", "c"]
         GosuStringUtil.splitPreserveAllTokens("a b c", ' ')    = ["a", "b", "c"]
         GosuStringUtil.splitPreserveAllTokens("a b c ", ' ')   = ["a", "b", "c", ""]
         GosuStringUtil.splitPreserveAllTokens("a b c  ", ' ')   = ["a", "b", "c", "", ""]
         GosuStringUtil.splitPreserveAllTokens(" a b c", ' ')   = ["", a", "b", "c"]
         GosuStringUtil.splitPreserveAllTokens("  a b c", ' ')  = ["", "", a", "b", "c"]
         GosuStringUtil.splitPreserveAllTokens(" a b c ", ' ')  = ["", a", "b", "c", ""]
         
        Parameters:
        str - the String to parse, may be null
        separatorChar - the character used as the delimiter, null splits on whitespace
        Returns:
        an array of parsed Strings, null if null String input
        Since:
        2.1
      • splitPreserveAllTokens

        public static String[] splitPreserveAllTokens​(String str,
                                                      String separatorChars)

        Splits the provided text into an array, separators specified, preserving all tokens, including empty tokens created by adjacent separators. This is an alternative to using StringTokenizer.

        The separator is not included in the returned String array. Adjacent separators are treated as separators for empty tokens. For more control over the split use the StrTokenizer class.

        A null input String returns null. A null separatorChars splits on whitespace.

         GosuStringUtil.splitPreserveAllTokens(null, *)           = null
         GosuStringUtil.splitPreserveAllTokens("", *)             = []
         GosuStringUtil.splitPreserveAllTokens("abc def", null)   = ["abc", "def"]
         GosuStringUtil.splitPreserveAllTokens("abc def", " ")    = ["abc", "def"]
         GosuStringUtil.splitPreserveAllTokens("abc  def", " ")   = ["abc", "", def"]
         GosuStringUtil.splitPreserveAllTokens("ab:cd:ef", ":")   = ["ab", "cd", "ef"]
         GosuStringUtil.splitPreserveAllTokens("ab:cd:ef:", ":")  = ["ab", "cd", "ef", ""]
         GosuStringUtil.splitPreserveAllTokens("ab:cd:ef::", ":") = ["ab", "cd", "ef", "", ""]
         GosuStringUtil.splitPreserveAllTokens("ab::cd:ef", ":")  = ["ab", "", cd", "ef"]
         GosuStringUtil.splitPreserveAllTokens(":cd:ef", ":")     = ["", cd", "ef"]
         GosuStringUtil.splitPreserveAllTokens("::cd:ef", ":")    = ["", "", cd", "ef"]
         GosuStringUtil.splitPreserveAllTokens(":cd:ef:", ":")    = ["", cd", "ef", ""]
         
        Parameters:
        str - the String to parse, may be null
        separatorChars - the characters used as the delimiters, null splits on whitespace
        Returns:
        an array of parsed Strings, null if null String input
        Since:
        2.1
      • splitPreserveAllTokens

        public static String[] splitPreserveAllTokens​(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.

        The separator is not included in the returned String array. Adjacent separators are treated as separators for empty tokens. Adjacent separators are treated as one separator.

        A null input String returns null. A null separatorChars splits on whitespace.

        If more than max delimited substrings are found, the last returned string includes all characters after the first max - 1 returned strings (including separator characters).

         GosuStringUtil.splitPreserveAllTokens(null, *, *)            = null
         GosuStringUtil.splitPreserveAllTokens("", *, *)              = []
         GosuStringUtil.splitPreserveAllTokens("ab de fg", null, 0)   = ["ab", "cd", "ef"]
         GosuStringUtil.splitPreserveAllTokens("ab   de fg", null, 0) = ["ab", "cd", "ef"]
         GosuStringUtil.splitPreserveAllTokens("ab:cd:ef", ":", 0)    = ["ab", "cd", "ef"]
         GosuStringUtil.splitPreserveAllTokens("ab:cd:ef", ":", 2)    = ["ab", "cd:ef"]
         GosuStringUtil.splitPreserveAllTokens("ab   de fg", null, 2) = ["ab", "  de fg"]
         GosuStringUtil.splitPreserveAllTokens("ab   de fg", null, 3) = ["ab", "", " de fg"]
         GosuStringUtil.splitPreserveAllTokens("ab   de fg", null, 4) = ["ab", "", "", "de fg"]
         
        Parameters:
        str - the String to parse, may be null
        separatorChars - the characters used as the delimiters, null splits on whitespace
        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 null String input
        Since:
        2.1
      • splitByCharacterType

        public static String[] splitByCharacterType​(String str)

        Splits a String by Character type as returned by java.lang.Character.getType(char). Groups of contiguous characters of the same type are returned as complete tokens.

         GosuStringUtil.splitByCharacterType(null)         = null
         GosuStringUtil.splitByCharacterType("")           = []
         GosuStringUtil.splitByCharacterType("ab de fg")   = ["ab", " ", "de", " ", "fg"]
         GosuStringUtil.splitByCharacterType("ab   de fg") = ["ab", "   ", "de", " ", "fg"]
         GosuStringUtil.splitByCharacterType("ab:cd:ef")   = ["ab", ":", "cd", ":", "ef"]
         GosuStringUtil.splitByCharacterType("number5")    = ["number", "5"]
         GosuStringUtil.splitByCharacterType("fooBar")     = ["foo", "B", "ar"]
         GosuStringUtil.splitByCharacterType("foo200Bar")  = ["foo", "200", "B", "ar"]
         GosuStringUtil.splitByCharacterType("ASFRules")   = ["ASFR", "ules"]
         
        Parameters:
        str - the String to split, may be null
        Returns:
        an array of parsed Strings, null if null String input
        Since:
        2.4
      • splitByCharacterTypeCamelCase

        public static String[] splitByCharacterTypeCamelCase​(String str)

        Splits a String by Character type as returned by java.lang.Character.getType(char). Groups of contiguous characters of the same type are returned as complete tokens, with the following exception: the character of type Character.UPPERCASE_LETTER, if any, immediately preceding a token of type Character.LOWERCASE_LETTER will belong to the following token rather than to the preceding, if any, Character.UPPERCASE_LETTER token.

         GosuStringUtil.splitByCharacterTypeCamelCase(null)         = null
         GosuStringUtil.splitByCharacterTypeCamelCase("")           = []
         GosuStringUtil.splitByCharacterTypeCamelCase("ab de fg")   = ["ab", " ", "de", " ", "fg"]
         GosuStringUtil.splitByCharacterTypeCamelCase("ab   de fg") = ["ab", "   ", "de", " ", "fg"]
         GosuStringUtil.splitByCharacterTypeCamelCase("ab:cd:ef")   = ["ab", ":", "cd", ":", "ef"]
         GosuStringUtil.splitByCharacterTypeCamelCase("number5")    = ["number", "5"]
         GosuStringUtil.splitByCharacterTypeCamelCase("fooBar")     = ["foo", "Bar"]
         GosuStringUtil.splitByCharacterTypeCamelCase("foo200Bar")  = ["foo", "200", "Bar"]
         GosuStringUtil.splitByCharacterTypeCamelCase("ASFRules")   = ["ASF", "Rules"]
         
        Parameters:
        str - the String to split, may be null
        Returns:
        an array of parsed Strings, null if null String input
        Since:
        2.4
      • concatenate

        public static String concatenate​(Object[] array)
        Deprecated.
        Use the better named join(Object[]) instead. Method will be removed in Commons Lang 3.0.

        Concatenates elements of an array into a single String. Null objects or empty strings within the array are represented by empty strings.

         GosuStringUtil.concatenate(null)            = null
         GosuStringUtil.concatenate([])              = ""
         GosuStringUtil.concatenate([null])          = ""
         GosuStringUtil.concatenate(["a", "b", "c"]) = "abc"
         GosuStringUtil.concatenate([null, "", "a"]) = "a"
         
        Parameters:
        array - the array of values to concatenate, may be null
        Returns:
        the concatenated String, null if null array input
      • join

        public static String join​(Object[] array)

        Joins the elements of the provided array into a single String containing the provided list of elements.

        No separator is added to the joined String. Null objects or empty strings within the array are represented by empty strings.

         GosuStringUtil.join(null)            = null
         GosuStringUtil.join([])              = ""
         GosuStringUtil.join([null])          = ""
         GosuStringUtil.join(["a", "b", "c"]) = "abc"
         GosuStringUtil.join([null, "", "a"]) = "a"
         
        Parameters:
        array - the array of values to join together, may be null
        Returns:
        the joined String, null if null array input
        Since:
        2.0
      • join

        public static String join​(Object[] array,
                                  char separator)

        Joins the elements of the provided array into a single String containing the provided list of elements.

        No delimiter is added before or after the list. Null objects or empty strings within the array are represented by empty strings.

         GosuStringUtil.join(null, *)               = null
         GosuStringUtil.join([], *)                 = ""
         GosuStringUtil.join([null], *)             = ""
         GosuStringUtil.join(["a", "b", "c"], ';')  = "a;b;c"
         GosuStringUtil.join(["a", "b", "c"], null) = "abc"
         GosuStringUtil.join([null, "", "a"], ';')  = ";;a"
         
        Parameters:
        array - the array of values to join together, may be null
        separator - the separator character to use
        Returns:
        the joined String, null if null array input
        Since:
        2.0
      • join

        public static String join​(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.

        No delimiter is added before or after the list. Null objects or empty strings within the array are represented by empty strings.

         GosuStringUtil.join(null, *)               = null
         GosuStringUtil.join([], *)                 = ""
         GosuStringUtil.join([null], *)             = ""
         GosuStringUtil.join(["a", "b", "c"], ';')  = "a;b;c"
         GosuStringUtil.join(["a", "b", "c"], null) = "abc"
         GosuStringUtil.join([null, "", "a"], ';')  = ";;a"
         
        Parameters:
        array - the array of values to join together, may be null
        separator - the separator character to use
        startIndex - the first index to start joining from. It is an error to pass in an end index past the end of the array
        endIndex - the index to stop joining from (exclusive). It is an error to pass in an end index past the end of the array
        Returns:
        the joined String, null if null array input
        Since:
        2.0
      • join

        public static String join​(Object[] array,
                                  String separator)

        Joins the elements of the provided array into a single String containing the provided list 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.

         GosuStringUtil.join(null, *)                = null
         GosuStringUtil.join([], *)                  = ""
         GosuStringUtil.join([null], *)              = ""
         GosuStringUtil.join(["a", "b", "c"], "--")  = "a--b--c"
         GosuStringUtil.join(["a", "b", "c"], null)  = "abc"
         GosuStringUtil.join(["a", "b", "c"], "")    = "abc"
         GosuStringUtil.join([null, "", "a"], ',')   = ",,a"
         
        Parameters:
        array - the array of values to join together, may be null
        separator - the separator character to use, null treated as ""
        Returns:
        the joined String, null if null array input
      • join

        public static String join​(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.

        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.

         GosuStringUtil.join(null, *)                = null
         GosuStringUtil.join([], *)                  = ""
         GosuStringUtil.join([null], *)              = ""
         GosuStringUtil.join(["a", "b", "c"], "--")  = "a--b--c"
         GosuStringUtil.join(["a", "b", "c"], null)  = "abc"
         GosuStringUtil.join(["a", "b", "c"], "")    = "abc"
         GosuStringUtil.join([null, "", "a"], ',')   = ",,a"
         
        Parameters:
        array - the array of values to join together, may be null
        separator - the separator character to use, null treated as ""
        startIndex - the first index to start joining from. It is an error to pass in an end index past the end of the array
        endIndex - the index to stop joining from (exclusive). It is an error to pass in an end index past the end of the array
        Returns:
        the joined String, null if null array input
      • join

        public static String join​(Iterator iterator,
                                  char separator)

        Joins the elements of the provided Iterator into a single String containing the provided elements.

        No delimiter is added before or after the list. Null objects or empty strings within the iteration are represented by empty strings.

        See the examples here: join(Object[],char).

        Parameters:
        iterator - the Iterator of values to join together, may be null
        separator - the separator character to use
        Returns:
        the joined String, null if null iterator input
        Since:
        2.0
      • join

        public static String join​(Iterator iterator,
                                  String separator)

        Joins the elements of the provided Iterator into a single String containing the provided elements.

        No delimiter is added before or after the list. A null separator is the same as an empty String ("").

        See the examples here: join(Object[],String).

        Parameters:
        iterator - the Iterator of values to join together, may be null
        separator - the separator character to use, null treated as ""
        Returns:
        the joined String, null if null iterator input
      • join

        public static String join​(Collection collection,
                                  char separator)

        Joins the elements of the provided Collection into a single String containing the provided elements.

        No delimiter is added before or after the list. Null objects or empty strings within the iteration are represented by empty strings.

        See the examples here: join(Object[],char).

        Parameters:
        collection - the Collection of values to join together, may be null
        separator - the separator character to use
        Returns:
        the joined String, null if null iterator input
        Since:
        2.3
      • join

        public static String join​(Collection collection,
                                  String separator)

        Joins the elements of the provided Collection into a single String containing the provided elements.

        No delimiter is added before or after the list. A null separator is the same as an empty String ("").

        See the examples here: join(Object[],String).

        Parameters:
        collection - the Collection of values to join together, may be null
        separator - the separator character to use, null treated as ""
        Returns:
        the joined String, null if null iterator input
        Since:
        2.3
      • deleteWhitespace

        public static String deleteWhitespace​(String str)

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

         GosuStringUtil.deleteWhitespace(null)         = null
         GosuStringUtil.deleteWhitespace("")           = ""
         GosuStringUtil.deleteWhitespace("abc")        = "abc"
         GosuStringUtil.deleteWhitespace("   ab  c  ") = "abc"
         
        Parameters:
        str - the String to delete whitespace from, may be null
        Returns:
        the String without whitespaces, null if null String input
      • removeStart

        public static String removeStart​(String str,
                                         String remove)

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

        A null source string will return null. An empty ("") source string will return the empty string. A null search string will return the source string.

         GosuStringUtil.removeStart(null, *)      = null
         GosuStringUtil.removeStart("", *)        = ""
         GosuStringUtil.removeStart(*, null)      = *
         GosuStringUtil.removeStart("www.domain.com", "www.")   = "domain.com"
         GosuStringUtil.removeStart("domain.com", "www.")       = "domain.com"
         GosuStringUtil.removeStart("www.domain.com", "domain") = "www.domain.com"
         GosuStringUtil.removeStart("abc", "")    = "abc"
         
        Parameters:
        str - the source String to search, may be null
        remove - the String to search for and remove, may be null
        Returns:
        the substring with the string removed if found, null if null String input
        Since:
        2.1
      • removeStartIgnoreCase

        public static String removeStartIgnoreCase​(String str,
                                                   String remove)

        Case insensitive removal of a substring if it is at the begining of a source string, otherwise returns the source string.

        A null source string will return null. An empty ("") source string will return the empty string. A null search string will return the source string.

         GosuStringUtil.removeStartIgnoreCase(null, *)      = null
         GosuStringUtil.removeStartIgnoreCase("", *)        = ""
         GosuStringUtil.removeStartIgnoreCase(*, null)      = *
         GosuStringUtil.removeStartIgnoreCase("www.domain.com", "www.")   = "domain.com"
         GosuStringUtil.removeStartIgnoreCase("www.domain.com", "WWW.")   = "domain.com"
         GosuStringUtil.removeStartIgnoreCase("domain.com", "www.")       = "domain.com"
         GosuStringUtil.removeStartIgnoreCase("www.domain.com", "domain") = "www.domain.com"
         GosuStringUtil.removeStartIgnoreCase("abc", "")    = "abc"
         
        Parameters:
        str - the source String to search, may be null
        remove - the String to search for (case insensitive) and remove, may be null
        Returns:
        the substring with the string removed if found, null if null String input
        Since:
        2.4
      • removeEnd

        public static String removeEnd​(String str,
                                       String remove)

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

        A null source string will return null. An empty ("") source string will return the empty string. A null search string will return the source string.

         GosuStringUtil.removeEnd(null, *)      = null
         GosuStringUtil.removeEnd("", *)        = ""
         GosuStringUtil.removeEnd(*, null)      = *
         GosuStringUtil.removeEnd("www.domain.com", ".com.")  = "www.domain.com"
         GosuStringUtil.removeEnd("www.domain.com", ".com")   = "www.domain"
         GosuStringUtil.removeEnd("www.domain.com", "domain") = "www.domain.com"
         GosuStringUtil.removeEnd("abc", "")    = "abc"
         
        Parameters:
        str - the source String to search, may be null
        remove - the String to search for and remove, may be null
        Returns:
        the substring with the string removed if found, null if null String input
        Since:
        2.1
      • removeEndIgnoreCase

        public static String removeEndIgnoreCase​(String str,
                                                 String remove)

        Case insensitive removal of a substring if it is at the end of a source string, otherwise returns the source string.

        A null source string will return null. An empty ("") source string will return the empty string. A null search string will return the source string.

         GosuStringUtil.removeEnd(null, *)      = null
         GosuStringUtil.removeEnd("", *)        = ""
         GosuStringUtil.removeEnd(*, null)      = *
         GosuStringUtil.removeEnd("www.domain.com", ".com.")  = "www.domain.com."
         GosuStringUtil.removeEnd("www.domain.com", ".com")   = "www.domain"
         GosuStringUtil.removeEnd("www.domain.com", "domain") = "www.domain.com"
         GosuStringUtil.removeEnd("abc", "")    = "abc"
         
        Parameters:
        str - the source String to search, may be null
        remove - the String to search for (case insensitive) and remove, may be null
        Returns:
        the substring with the string removed if found, null if null String input
        Since:
        2.4
      • remove

        public static String remove​(String str,
                                    String remove)

        Removes all occurrences of a substring from within the source string.

        A null source string will return null. An empty ("") source string will return the empty string. A null remove string will return the source string. An empty ("") remove string will return the source string.

         GosuStringUtil.remove(null, *)        = null
         GosuStringUtil.remove("", *)          = ""
         GosuStringUtil.remove(*, null)        = *
         GosuStringUtil.remove(*, "")          = *
         GosuStringUtil.remove("queued", "ue") = "qd"
         GosuStringUtil.remove("queued", "zz") = "queued"
         
        Parameters:
        str - the source String to search, may be null
        remove - the String to search for and remove, may be null
        Returns:
        the substring with the string removed if found, null if null String input
        Since:
        2.1
      • remove

        public static String remove​(String str,
                                    char remove)

        Removes all occurrences of a character from within the source string.

        A null source string will return null. An empty ("") source string will return the empty string.

         GosuStringUtil.remove(null, *)       = null
         GosuStringUtil.remove("", *)         = ""
         GosuStringUtil.remove("queued", 'u') = "qeed"
         GosuStringUtil.remove("queued", 'z') = "queued"
         
        Parameters:
        str - the source String to search, may be null
        remove - the char to search for and remove, may be null
        Returns:
        the substring with the char removed if found, null if null String input
        Since:
        2.1
      • replaceOnce

        public static String replaceOnce​(String text,
                                         String searchString,
                                         String replacement)

        Replaces a String with another String inside a larger String, once.

        A null reference passed to this method is a no-op.

         GosuStringUtil.replaceOnce(null, *, *)        = null
         GosuStringUtil.replaceOnce("", *, *)          = ""
         GosuStringUtil.replaceOnce("any", null, *)    = "any"
         GosuStringUtil.replaceOnce("any", *, null)    = "any"
         GosuStringUtil.replaceOnce("any", "", *)      = "any"
         GosuStringUtil.replaceOnce("aba", "a", null)  = "aba"
         GosuStringUtil.replaceOnce("aba", "a", "")    = "ba"
         GosuStringUtil.replaceOnce("aba", "a", "z")   = "zba"
         
        Parameters:
        text - text to search and replace in, may be null
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        Returns:
        the text with any replacements processed, null if null String input
        See Also:
        replace(String text, String searchString, String replacement, int max)
      • replace

        public static String replace​(String text,
                                     String searchString,
                                     String replacement)

        Replaces all occurrences of a String within another String.

        A null reference passed to this method is a no-op.

         GosuStringUtil.replace(null, *, *)        = null
         GosuStringUtil.replace("", *, *)          = ""
         GosuStringUtil.replace("any", null, *)    = "any"
         GosuStringUtil.replace("any", *, null)    = "any"
         GosuStringUtil.replace("any", "", *)      = "any"
         GosuStringUtil.replace("aba", "a", null)  = "aba"
         GosuStringUtil.replace("aba", "a", "")    = "b"
         GosuStringUtil.replace("aba", "a", "z")   = "zbz"
         
        Parameters:
        text - text to search and replace in, may be null
        searchString - the String to search for, may be null
        replacement - the String to replace it with, may be null
        Returns:
        the text with any replacements processed, null if null String input
        See Also:
        replace(String text, String searchString, String replacement, int max)
      • replace

        public static String replace​(String text,
                                     String searchString,
                                     String replacement,
                                     int max)

        Replaces a String with another String inside a larger String, for the first max values of the search String.

        A null reference passed to this method is a no-op.

         GosuStringUtil.replace(null, *, *, *)         = null
         GosuStringUtil.replace("", *, *, *)           = ""
         GosuStringUtil.replace("any", null, *, *)     = "any"
         GosuStringUtil.replace("any", *, null, *)     = "any"
         GosuStringUtil.replace("any", "", *, *)       = "any"
         GosuStringUtil.replace("any", *, *, 0)        = "any"
         GosuStringUtil.replace("abaa", "a", null, -1) = "abaa"
         GosuStringUtil.replace("abaa", "a", "", -1)   = "b"
         GosuStringUtil.replace("abaa", "a", "z", 0)   = "abaa"
         GosuStringUtil.replace("abaa", "a", "z", 1)   = "zbaa"
         GosuStringUtil.replace("abaa", "a", "z", 2)   = "zbza"
         GosuStringUtil.replace("abaa", "a", "z", -1)  = "zbzz"
         
        Parameters:
        text - text to search and replace in, may be null
        searchString - the String to search for, may be null
        replacement - the String to replace it with, may be null
        max - maximum number of values to replace, or -1 if no maximum
        Returns:
        the text with any replacements processed, null if null String input
      • replaceEach

        public static String replaceEach​(String text,
                                         String[] searchList,
                                         String[] replacementList)

        Replaces all occurrences of Strings within another String.

        A null reference passed to this method is a no-op, or if any "search string" or "string to replace" is null, that replace will be ignored. This will not repeat. For repeating replaces, call the overloaded method.

          GosuStringUtil.replaceEach(null, *, *)        = null
          GosuStringUtil.replaceEach("", *, *)          = ""
          GosuStringUtil.replaceEach("aba", null, null) = "aba"
          GosuStringUtil.replaceEach("aba", new String[0], null) = "aba"
          GosuStringUtil.replaceEach("aba", null, new String[0]) = "aba"
          GosuStringUtil.replaceEach("aba", new String[]{"a"}, null)  = "aba"
          GosuStringUtil.replaceEach("aba", new String[]{"a"}, new String[]{""})  = "b"
          GosuStringUtil.replaceEach("aba", new String[]{null}, new String[]{"a"})  = "aba"
          GosuStringUtil.replaceEach("abcde", new String[]{"ab", "d"}, new String[]{"w", "t"})  = "wcte"
          (example of how it does not repeat)
          GosuStringUtil.replaceEach("abcde", new String[]{"ab", "d"}, new String[]{"d", "t"})  = "dcte"
         
        Parameters:
        text - text to search and replace in, no-op if null
        searchList - the Strings to search for, no-op if null
        replacementList - the Strings to replace them with, no-op if null
        Returns:
        the text with any replacements processed, null if null String input
        Throws:
        IndexOutOfBoundsException - if the lengths of the arrays are not the same (null is ok, and/or size 0)
        Since:
        2.4
      • replaceEachRepeatedly

        public static String replaceEachRepeatedly​(String text,
                                                   String[] searchList,
                                                   String[] replacementList)

        Replaces all occurrences of Strings within another String.

        A null reference passed to this method is a no-op, or if any "search string" or "string to replace" is null, that replace will be ignored. This will not repeat. For repeating replaces, call the overloaded method.

          GosuStringUtil.replaceEach(null, *, *, *) = null
          GosuStringUtil.replaceEach("", *, *, *) = ""
          GosuStringUtil.replaceEach("aba", null, null, *) = "aba"
          GosuStringUtil.replaceEach("aba", new String[0], null, *) = "aba"
          GosuStringUtil.replaceEach("aba", null, new String[0], *) = "aba"
          GosuStringUtil.replaceEach("aba", new String[]{"a"}, null, *) = "aba"
          GosuStringUtil.replaceEach("aba", new String[]{"a"}, new String[]{""}, *) = "b"
          GosuStringUtil.replaceEach("aba", new String[]{null}, new String[]{"a"}, *) = "aba"
          GosuStringUtil.replaceEach("abcde", new String[]{"ab", "d"}, new String[]{"w", "t"}, *) = "wcte"
          (example of how it repeats)
          GosuStringUtil.replaceEach("abcde", new String[]{"ab", "d"}, new String[]{"d", "t"}, false) = "dcte"
          GosuStringUtil.replaceEach("abcde", new String[]{"ab", "d"}, new String[]{"d", "t"}, true) = "tcte"
          GosuStringUtil.replaceEach("abcde", new String[]{"ab", "d"}, new String[]{"d", "ab"}, true) = IllegalArgumentException
          GosuStringUtil.replaceEach("abcde", new String[]{"ab", "d"}, new String[]{"d", "ab"}, false) = "dcabe"
         
        Parameters:
        text - text to search and replace in, no-op if null
        searchList - the Strings to search for, no-op if null
        replacementList - the Strings to replace them with, no-op if null
        Returns:
        the text with any replacements processed, null if null String input
        Throws:
        IllegalArgumentException - if the search is repeating and there is an endless loop due to outputs of one being inputs to another
        IndexOutOfBoundsException - if the lengths of the arrays are not the same (null is ok, and/or size 0)
        Since:
        2.4
      • replaceChars

        public static String replaceChars​(String str,
                                          char searchChar,
                                          char replaceChar)

        Replaces all occurrences of a character in a String with another. This is a null-safe version of String.replace(char, char).

        A null string input returns null. An empty ("") string input returns an empty string.

         GosuStringUtil.replaceChars(null, *, *)        = null
         GosuStringUtil.replaceChars("", *, *)          = ""
         GosuStringUtil.replaceChars("abcba", 'b', 'y') = "aycya"
         GosuStringUtil.replaceChars("abcba", 'z', 'y') = "abcba"
         
        Parameters:
        str - String to replace characters in, may be null
        searchChar - the character to search for, may be null
        replaceChar - the character to replace, may be null
        Returns:
        modified String, null if null string input
        Since:
        2.0
      • replaceChars

        public static String replaceChars​(String str,
                                          String searchChars,
                                          String replaceChars)

        Replaces multiple characters in a String in one go. This method can also be used to delete characters.

        For example:
        replaceChars("hello", "ho", "jy") = jelly.

        A null string input returns null. An empty ("") string input returns an empty string. A null or empty set of search characters returns the input string.

        The length of the search characters should normally equal the length of the replace characters. If the search characters is longer, then the extra search characters are deleted. If the search characters is shorter, then the extra replace characters are ignored.

         GosuStringUtil.replaceChars(null, *, *)           = null
         GosuStringUtil.replaceChars("", *, *)             = ""
         GosuStringUtil.replaceChars("abc", null, *)       = "abc"
         GosuStringUtil.replaceChars("abc", "", *)         = "abc"
         GosuStringUtil.replaceChars("abc", "b", null)     = "ac"
         GosuStringUtil.replaceChars("abc", "b", "")       = "ac"
         GosuStringUtil.replaceChars("abcba", "bc", "yz")  = "ayzya"
         GosuStringUtil.replaceChars("abcba", "bc", "y")   = "ayya"
         GosuStringUtil.replaceChars("abcba", "bc", "yzx") = "ayzya"
         
        Parameters:
        str - String to replace characters in, may be null
        searchChars - a set of characters to search for, may be null
        replaceChars - a set of characters to replace, may be null
        Returns:
        modified String, null if null string input
        Since:
        2.0
      • overlayString

        public static String overlayString​(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.

        Overlays part of a String with another String.

         GosuStringUtil.overlayString(null, *, *, *)           = NullPointerException
         GosuStringUtil.overlayString(*, null, *, *)           = NullPointerException
         GosuStringUtil.overlayString("", "abc", 0, 0)         = "abc"
         GosuStringUtil.overlayString("abcdef", null, 2, 4)    = "abef"
         GosuStringUtil.overlayString("abcdef", "", 2, 4)      = "abef"
         GosuStringUtil.overlayString("abcdef", "zzzz", 2, 4)  = "abzzzzef"
         GosuStringUtil.overlayString("abcdef", "zzzz", 4, 2)  = "abcdzzzzcdef"
         GosuStringUtil.overlayString("abcdef", "zzzz", -1, 4) = IndexOutOfBoundsException
         GosuStringUtil.overlayString("abcdef", "zzzz", 2, 8)  = IndexOutOfBoundsException
         
        Parameters:
        text - the String to do overlaying in, may be null
        overlay - the String to overlay, may be null
        start - the position to start overlaying at, must be valid
        end - the position to stop overlaying before, must be valid
        Returns:
        overlayed String, null if null String input
        Throws:
        NullPointerException - if text or overlay is null
        IndexOutOfBoundsException - if either position is invalid
      • overlay

        public static String overlay​(String str,
                                     String overlay,
                                     int start,
                                     int end)

        Overlays part of a String with another String.

        A null string input returns null. A negative index is treated as zero. An index greater than the string length is treated as the string length. The start index is always the smaller of the two indices.

         GosuStringUtil.overlay(null, *, *, *)            = null
         GosuStringUtil.overlay("", "abc", 0, 0)          = "abc"
         GosuStringUtil.overlay("abcdef", null, 2, 4)     = "abef"
         GosuStringUtil.overlay("abcdef", "", 2, 4)       = "abef"
         GosuStringUtil.overlay("abcdef", "", 4, 2)       = "abef"
         GosuStringUtil.overlay("abcdef", "zzzz", 2, 4)   = "abzzzzef"
         GosuStringUtil.overlay("abcdef", "zzzz", 4, 2)   = "abzzzzef"
         GosuStringUtil.overlay("abcdef", "zzzz", -1, 4)  = "zzzzef"
         GosuStringUtil.overlay("abcdef", "zzzz", 2, 8)   = "abzzzz"
         GosuStringUtil.overlay("abcdef", "zzzz", -2, -3) = "zzzzabcdef"
         GosuStringUtil.overlay("abcdef", "zzzz", 8, 10)  = "abcdefzzzz"
         
        Parameters:
        str - the String to do overlaying in, may be null
        overlay - the String to overlay, may be null
        start - the position to start overlaying at
        end - the position to stop overlaying before
        Returns:
        overlayed String, null if null String input
        Since:
        2.0
      • chomp

        public static String chomp​(String str)

        Removes one newline from end of a String if it's there, otherwise leave it alone. A newline is "\n", "\r", or "\r\n".

        NOTE: This method changed in 2.0. It now more closely matches Perl chomp.

         GosuStringUtil.chomp(null)          = null
         GosuStringUtil.chomp("")            = ""
         GosuStringUtil.chomp("abc \r")      = "abc "
         GosuStringUtil.chomp("abc\n")       = "abc"
         GosuStringUtil.chomp("abc\r\n")     = "abc"
         GosuStringUtil.chomp("abc\r\n\r\n") = "abc\r\n"
         GosuStringUtil.chomp("abc\n\r")     = "abc\n"
         GosuStringUtil.chomp("abc\n\rabc")  = "abc\n\rabc"
         GosuStringUtil.chomp("\r")          = ""
         GosuStringUtil.chomp("\n")          = ""
         GosuStringUtil.chomp("\r\n")        = ""
         
        Parameters:
        str - the String to chomp a newline from, may be null
        Returns:
        String without newline, null if null String input
      • chomp

        public static String chomp​(String str,
                                   String separator)

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

        NOTE: This method changed in version 2.0. It now more closely matches Perl chomp. For the previous behavior, use substringBeforeLast(String, String). This method uses String.endsWith(String).

         GosuStringUtil.chomp(null, *)         = null
         GosuStringUtil.chomp("", *)           = ""
         GosuStringUtil.chomp("foobar", "bar") = "foo"
         GosuStringUtil.chomp("foobar", "baz") = "foobar"
         GosuStringUtil.chomp("foo", "foo")    = ""
         GosuStringUtil.chomp("foo ", "foo")   = "foo "
         GosuStringUtil.chomp(" foo", "foo")   = " "
         GosuStringUtil.chomp("foo", "foooo")  = "foo"
         GosuStringUtil.chomp("foo", "")       = "foo"
         GosuStringUtil.chomp("foo", null)     = "foo"
         
        Parameters:
        str - the String to chomp from, may be null
        separator - separator String, may be null
        Returns:
        String without trailing separator, null if null String input
      • chompLast

        public static String chompLast​(String str)
        Deprecated.
        Use chomp(String) instead. Method will be removed in Commons Lang 3.0.

        Remove any "\n" if and only if it is at the end of the supplied String.

        Parameters:
        str - the String to chomp from, must not be null
        Returns:
        String without chomped ending
        Throws:
        NullPointerException - if str is null
      • chompLast

        public static String chompLast​(String str,
                                       String sep)
        Deprecated.
        Use chomp(String,String) instead. Method will be removed in Commons Lang 3.0.

        Remove a value if and only if the String ends with that value.

        Parameters:
        str - the String to chomp from, must not be null
        sep - the String to chomp, must not be null
        Returns:
        String without chomped ending
        Throws:
        NullPointerException - if str or sep is null
      • getChomp

        public static String getChomp​(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.

        Remove everything and return the last value of a supplied String, and everything after it from a String.

        Parameters:
        str - the String to chomp from, must not be null
        sep - the String to chomp, must not be null
        Returns:
        String chomped
        Throws:
        NullPointerException - if str or sep is null
      • prechomp

        public static String prechomp​(String str,
                                      String sep)
        Deprecated.
        Use substringAfter(String,String) instead. Method will be removed in Commons Lang 3.0.

        Remove the first value of a supplied String, and everything before it from a String.

        Parameters:
        str - the String to chomp from, must not be null
        sep - the String to chomp, must not be null
        Returns:
        String without chomped beginning
        Throws:
        NullPointerException - if str or sep is null
      • getPrechomp

        public static String getPrechomp​(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.

        Remove and return everything before the first value of a supplied String from another String.

        Parameters:
        str - the String to chomp from, must not be null
        sep - the String to chomp, must not be null
        Returns:
        String prechomped
        Throws:
        NullPointerException - if str or sep is null
      • chop

        public static String chop​(String str)

        Remove the last character from a String.

        If the String ends in \r\n, then remove both of them.

         GosuStringUtil.chop(null)          = null
         GosuStringUtil.chop("")            = ""
         GosuStringUtil.chop("abc \r")      = "abc "
         GosuStringUtil.chop("abc\n")       = "abc"
         GosuStringUtil.chop("abc\r\n")     = "abc"
         GosuStringUtil.chop("abc")         = "ab"
         GosuStringUtil.chop("abc\nabc")    = "abc\nab"
         GosuStringUtil.chop("a")           = ""
         GosuStringUtil.chop("\r")          = ""
         GosuStringUtil.chop("\n")          = ""
         GosuStringUtil.chop("\r\n")        = ""
         
        Parameters:
        str - the String to chop last character from, may be null
        Returns:
        String without last character, null if null String input
      • chopNewline

        public static String chopNewline​(String str)
        Deprecated.
        Use chomp(String) instead. Method will be removed in Commons Lang 3.0.

        Removes \n from end of a String if it's there. If a \r precedes it, then remove that too.

        Parameters:
        str - the String to chop a newline from, must not be null
        Returns:
        String without newline
        Throws:
        NullPointerException - if str is null
      • repeat

        public static String repeat​(String str,
                                    int repeat)

        Repeat a String repeat times to form a new String.

         GosuStringUtil.repeat(null, 2) = null
         GosuStringUtil.repeat("", 0)   = ""
         GosuStringUtil.repeat("", 2)   = ""
         GosuStringUtil.repeat("a", 3)  = "aaa"
         GosuStringUtil.repeat("ab", 2) = "abab"
         GosuStringUtil.repeat("a", -2) = ""
         
        Parameters:
        str - the String to repeat, may be null
        repeat - number of times to repeat str, negative treated as zero
        Returns:
        a new String consisting of the original String repeated, null if null String input
      • rightPad

        public static String rightPad​(String str,
                                      int size)

        Right pad a String with spaces (' ').

        The String is padded to the size of size.

         GosuStringUtil.rightPad(null, *)   = null
         GosuStringUtil.rightPad("", 3)     = "   "
         GosuStringUtil.rightPad("bat", 3)  = "bat"
         GosuStringUtil.rightPad("bat", 5)  = "bat  "
         GosuStringUtil.rightPad("bat", 1)  = "bat"
         GosuStringUtil.rightPad("bat", -1) = "bat"
         
        Parameters:
        str - the String to pad out, may be null
        size - the size to pad to
        Returns:
        right padded String or original String if no padding is necessary, null if null String input
      • rightPad

        public static String rightPad​(String str,
                                      int size,
                                      char padChar)

        Right pad a String with a specified character.

        The String is padded to the size of size.

         GosuStringUtil.rightPad(null, *, *)     = null
         GosuStringUtil.rightPad("", 3, 'z')     = "zzz"
         GosuStringUtil.rightPad("bat", 3, 'z')  = "bat"
         GosuStringUtil.rightPad("bat", 5, 'z')  = "batzz"
         GosuStringUtil.rightPad("bat", 1, 'z')  = "bat"
         GosuStringUtil.rightPad("bat", -1, 'z') = "bat"
         
        Parameters:
        str - the String to pad out, may be null
        size - the size to pad to
        padChar - the character to pad with
        Returns:
        right padded String or original String if no padding is necessary, null if null String input
        Since:
        2.0
      • rightPad

        public static String rightPad​(String str,
                                      int size,
                                      String padStr)

        Right pad a String with a specified String.

        The String is padded to the size of size.

         GosuStringUtil.rightPad(null, *, *)      = null
         GosuStringUtil.rightPad("", 3, "z")      = "zzz"
         GosuStringUtil.rightPad("bat", 3, "yz")  = "bat"
         GosuStringUtil.rightPad("bat", 5, "yz")  = "batyz"
         GosuStringUtil.rightPad("bat", 8, "yz")  = "batyzyzy"
         GosuStringUtil.rightPad("bat", 1, "yz")  = "bat"
         GosuStringUtil.rightPad("bat", -1, "yz") = "bat"
         GosuStringUtil.rightPad("bat", 5, null)  = "bat  "
         GosuStringUtil.rightPad("bat", 5, "")    = "bat  "
         
        Parameters:
        str - the String to pad out, may be null
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        Returns:
        right padded String or original String if no padding is necessary, null if null String input
      • leftPad

        public static String leftPad​(String str,
                                     int size)

        Left pad a String with spaces (' ').

        The String is padded to the size of size.

         GosuStringUtil.leftPad(null, *)   = null
         GosuStringUtil.leftPad("", 3)     = "   "
         GosuStringUtil.leftPad("bat", 3)  = "bat"
         GosuStringUtil.leftPad("bat", 5)  = "  bat"
         GosuStringUtil.leftPad("bat", 1)  = "bat"
         GosuStringUtil.leftPad("bat", -1) = "bat"
         
        Parameters:
        str - the String to pad out, may be null
        size - the size to pad to
        Returns:
        left padded String or original String if no padding is necessary, null if null String input
      • leftPad

        public static String leftPad​(String str,
                                     int size,
                                     char padChar)

        Left pad a String with a specified character.

        Pad to a size of size.

         GosuStringUtil.leftPad(null, *, *)     = null
         GosuStringUtil.leftPad("", 3, 'z')     = "zzz"
         GosuStringUtil.leftPad("bat", 3, 'z')  = "bat"
         GosuStringUtil.leftPad("bat", 5, 'z')  = "zzbat"
         GosuStringUtil.leftPad("bat", 1, 'z')  = "bat"
         GosuStringUtil.leftPad("bat", -1, 'z') = "bat"
         
        Parameters:
        str - the String to pad out, may be null
        size - the size to pad to
        padChar - the character to pad with
        Returns:
        left padded String or original String if no padding is necessary, null if null String input
        Since:
        2.0
      • leftPad

        public static String leftPad​(String str,
                                     int size,
                                     String padStr)

        Left pad a String with a specified String.

        Pad to a size of size.

         GosuStringUtil.leftPad(null, *, *)      = null
         GosuStringUtil.leftPad("", 3, "z")      = "zzz"
         GosuStringUtil.leftPad("bat", 3, "yz")  = "bat"
         GosuStringUtil.leftPad("bat", 5, "yz")  = "yzbat"
         GosuStringUtil.leftPad("bat", 8, "yz")  = "yzyzybat"
         GosuStringUtil.leftPad("bat", 1, "yz")  = "bat"
         GosuStringUtil.leftPad("bat", -1, "yz") = "bat"
         GosuStringUtil.leftPad("bat", 5, null)  = "  bat"
         GosuStringUtil.leftPad("bat", 5, "")    = "  bat"
         
        Parameters:
        str - the String to pad out, may be null
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        Returns:
        left padded String or original String if no padding is necessary, null if null String input
      • length

        public static int length​(String str)
        Gets a String's length or 0 if the String is null.
        Parameters:
        str - a String or null
        Returns:
        String length or 0 if the String is null.
        Since:
        2.4
      • center

        public static String center​(String str,
                                    int size)

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

        If the size is less than the String length, the String is returned. A null String returns null. A negative size is treated as zero.

        Equivalent to center(str, size, " ").

         GosuStringUtil.center(null, *)   = null
         GosuStringUtil.center("", 4)     = "    "
         GosuStringUtil.center("ab", -1)  = "ab"
         GosuStringUtil.center("ab", 4)   = " ab "
         GosuStringUtil.center("abcd", 2) = "abcd"
         GosuStringUtil.center("a", 4)    = " a  "
         
        Parameters:
        str - the String to center, may be null
        size - the int size of new String, negative treated as zero
        Returns:
        centered String, null if null String input
      • center

        public static String center​(String str,
                                    int size,
                                    char padChar)

        Centers a String in a larger String of size size. Uses a supplied character as the value to pad the String with.

        If the size is less than the String length, the String is returned. A null String returns null. A negative size is treated as zero.

         GosuStringUtil.center(null, *, *)     = null
         GosuStringUtil.center("", 4, ' ')     = "    "
         GosuStringUtil.center("ab", -1, ' ')  = "ab"
         GosuStringUtil.center("ab", 4, ' ')   = " ab"
         GosuStringUtil.center("abcd", 2, ' ') = "abcd"
         GosuStringUtil.center("a", 4, ' ')    = " a  "
         GosuStringUtil.center("a", 4, 'y')    = "yayy"
         
        Parameters:
        str - the String to center, may be null
        size - the int size of new String, negative treated as zero
        padChar - the character to pad the new String with
        Returns:
        centered String, null if null String input
        Since:
        2.0
      • center

        public static String center​(String str,
                                    int size,
                                    String padStr)

        Centers a String in a larger String of size size. Uses a supplied String as the value to pad the String with.

        If the size is less than the String length, the String is returned. A null String returns null. A negative size is treated as zero.

         GosuStringUtil.center(null, *, *)     = null
         GosuStringUtil.center("", 4, " ")     = "    "
         GosuStringUtil.center("ab", -1, " ")  = "ab"
         GosuStringUtil.center("ab", 4, " ")   = " ab"
         GosuStringUtil.center("abcd", 2, " ") = "abcd"
         GosuStringUtil.center("a", 4, " ")    = " a  "
         GosuStringUtil.center("a", 4, "yz")   = "yayz"
         GosuStringUtil.center("abc", 7, null) = "  abc  "
         GosuStringUtil.center("abc", 7, "")   = "  abc  "
         
        Parameters:
        str - the String to center, may be null
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        Returns:
        centered String, null if null String input
        Throws:
        IllegalArgumentException - if padStr is null or empty
      • upperCase

        public static String upperCase​(String str)

        Converts a String to upper case as per String.toUpperCase().

        A null input String returns null.

         GosuStringUtil.upperCase(null)  = null
         GosuStringUtil.upperCase("")    = ""
         GosuStringUtil.upperCase("aBc") = "ABC"
         

        Note: As described in the documentation for String.toUpperCase(), the result of this method is affected by the current locale. For platform-independent case transformations, the method lowerCase(String, Locale) should be used with a specific locale (e.g. Locale.ENGLISH).

        Parameters:
        str - the String to upper case, may be null
        Returns:
        the upper cased String, null if null String input
      • upperCase

        public static String upperCase​(String str,
                                       Locale locale)

        Converts a String to upper case as per String.toUpperCase(Locale).

        A null input String returns null.

         GosuStringUtil.upperCase(null, Locale.ENGLISH)  = null
         GosuStringUtil.upperCase("", Locale.ENGLISH)    = ""
         GosuStringUtil.upperCase("aBc", Locale.ENGLISH) = "ABC"
         
        Parameters:
        str - the String to upper case, may be null
        locale - the locale that defines the case transformation rules, must not be null
        Returns:
        the upper cased String, null if null String input
        Since:
        3.0
      • lowerCase

        public static String lowerCase​(String str)

        Converts a String to lower case as per String.toLowerCase().

        A null input String returns null.

         GosuStringUtil.lowerCase(null)  = null
         GosuStringUtil.lowerCase("")    = ""
         GosuStringUtil.lowerCase("aBc") = "abc"
         

        Note: As described in the documentation for String.toLowerCase(), the result of this method is affected by the current locale. For platform-independent case transformations, the method lowerCase(String, Locale) should be used with a specific locale (e.g. Locale.ENGLISH).

        Parameters:
        str - the String to lower case, may be null
        Returns:
        the lower cased String, null if null String input
      • lowerCase

        public static String lowerCase​(String str,
                                       Locale locale)

        Converts a String to lower case as per String.toLowerCase(Locale).

        A null input String returns null.

         GosuStringUtil.lowerCase(null, Locale.ENGLISH)  = null
         GosuStringUtil.lowerCase("", Locale.ENGLISH)    = ""
         GosuStringUtil.lowerCase("aBc", Locale.ENGLISH) = "abc"
         
        Parameters:
        str - the String to lower case, may be null
        locale - the locale that defines the case transformation rules, must not be null
        Returns:
        the lower cased String, null if null String input
        Since:
        3.0
      • capitalize

        public static String capitalize​(String str)

        Capitalizes a String changing the first letter to title case as per Character.toTitleCase(char). No other letters are changed.

         GosuStringUtil.capitalize(null)  = null
         GosuStringUtil.capitalize("")    = ""
         GosuStringUtil.capitalize("cat") = "Cat"
         GosuStringUtil.capitalize("cAt") = "CAt"
         
        Parameters:
        str - the String to capitalize, may be null
        Returns:
        the capitalized String, null if null String input
        Since:
        2.0
        See Also:
        uncapitalize(String)
      • capitalise

        public static String capitalise​(String str)
        Deprecated.
        Use the standardly named capitalize(String). Method will be removed in Commons Lang 3.0.

        Capitalizes a String changing the first letter to title case as per Character.toTitleCase(char). No other letters are changed.

        Parameters:
        str - the String to capitalize, may be null
        Returns:
        the capitalized String, null if null String input
      • uncapitalize

        public static String uncapitalize​(String str)

        Uncapitalizes a String changing the first letter to title case as per Character.toLowerCase(char). No other letters are changed.

         GosuStringUtil.uncapitalize(null)  = null
         GosuStringUtil.uncapitalize("")    = ""
         GosuStringUtil.uncapitalize("Cat") = "cat"
         GosuStringUtil.uncapitalize("CAT") = "cAT"
         
        Parameters:
        str - the String to uncapitalize, may be null
        Returns:
        the uncapitalized String, null if null String input
        Since:
        2.0
        See Also:
        capitalize(String)
      • uncapitalise

        public static String uncapitalise​(String str)
        Deprecated.
        Use the standardly named uncapitalize(String). Method will be removed in Commons Lang 3.0.

        Uncapitalizes a String changing the first letter to title case as per Character.toLowerCase(char). No other letters are changed.

        Parameters:
        str - the String to uncapitalize, may be null
        Returns:
        the uncapitalized String, null if null String input
      • swapCase

        public static String swapCase​(String str)

        Swaps the case of a String changing upper and title case to lower case, and lower case to upper case.

        • Upper case character converts to Lower case
        • Title case character converts to Lower case
        • Lower case character converts to Upper case
         GosuStringUtil.swapCase(null)                 = null
         GosuStringUtil.swapCase("")                   = ""
         GosuStringUtil.swapCase("The dog has a BONE") = "tHE DOG HAS A bone"
         

        NOTE: This method changed in Lang version 2.0. It no longer performs a word based algorithm. If you only use ASCII, you will notice no change. That functionality is available in WordUtils.

        Parameters:
        str - the String to swap case, may be null
        Returns:
        the changed String, null if null String input
      • countMatches

        public static int countMatches​(String str,
                                       String sub)

        Counts how many times the substring appears in the larger String.

        A null or empty ("") String input returns 0.

         GosuStringUtil.countMatches(null, *)       = 0
         GosuStringUtil.countMatches("", *)         = 0
         GosuStringUtil.countMatches("abba", null)  = 0
         GosuStringUtil.countMatches("abba", "")    = 0
         GosuStringUtil.countMatches("abba", "a")   = 2
         GosuStringUtil.countMatches("abba", "ab")  = 1
         GosuStringUtil.countMatches("abba", "xxx") = 0
         
        Parameters:
        str - the String to check, may be null
        sub - the substring to count, may be null
        Returns:
        the number of occurrences, 0 if either String is null
      • countRegexpMatches

        public static int countRegexpMatches​(String str,
                                             String regexp)

        Counts how many times the regexp appears in the larger String.

        A null or empty ("") String input returns 0.

         GosuStringUtil.countMatches(null, *)       = 0
         GosuStringUtil.countMatches("", *)         = 0
         GosuStringUtil.countMatches("abba", null)  = 0
         GosuStringUtil.countMatches("abba", "")    = 0
         GosuStringUtil.countMatches("abba", "a")   = 2
         GosuStringUtil.countMatches("abba", "ab")  = 1
         GosuStringUtil.countMatches("abba", ".b")  = 2
         GosuStringUtil.countMatches("abba", "xxx") = 0
         
        Parameters:
        str - the String to check, may be null
        regexp - the regexp to count, may be null
        Returns:
        the number of occurrences, 0 if either String is null
      • isAlpha

        public static boolean isAlpha​(String str)

        Checks if the String contains only unicode letters.

        null will return false. An empty String ("") will return true.

         GosuStringUtil.isAlpha(null)   = false
         GosuStringUtil.isAlpha("")     = true
         GosuStringUtil.isAlpha("  ")   = false
         GosuStringUtil.isAlpha("abc")  = true
         GosuStringUtil.isAlpha("ab2c") = false
         GosuStringUtil.isAlpha("ab-c") = false
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if only contains letters, and is non-null
      • isAlphaSpace

        public static boolean isAlphaSpace​(String str)

        Checks if the String contains only unicode letters and space (' ').

        null will return false An empty String ("") will return true.

         GosuStringUtil.isAlphaSpace(null)   = false
         GosuStringUtil.isAlphaSpace("")     = true
         GosuStringUtil.isAlphaSpace("  ")   = true
         GosuStringUtil.isAlphaSpace("abc")  = true
         GosuStringUtil.isAlphaSpace("ab c") = true
         GosuStringUtil.isAlphaSpace("ab2c") = false
         GosuStringUtil.isAlphaSpace("ab-c") = false
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if only contains letters and space, and is non-null
      • isAlphanumeric

        public static boolean isAlphanumeric​(String str)

        Checks if the String contains only unicode letters or digits.

        null will return false. An empty String ("") will return true.

         GosuStringUtil.isAlphanumeric(null)   = false
         GosuStringUtil.isAlphanumeric("")     = true
         GosuStringUtil.isAlphanumeric("  ")   = false
         GosuStringUtil.isAlphanumeric("abc")  = true
         GosuStringUtil.isAlphanumeric("ab c") = false
         GosuStringUtil.isAlphanumeric("ab2c") = true
         GosuStringUtil.isAlphanumeric("ab-c") = false
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if only contains letters or digits, and is non-null
      • isAlphanumericSpace

        public static boolean isAlphanumericSpace​(String str)

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

        null will return false. An empty String ("") will return true.

         GosuStringUtil.isAlphanumeric(null)   = false
         GosuStringUtil.isAlphanumeric("")     = true
         GosuStringUtil.isAlphanumeric("  ")   = true
         GosuStringUtil.isAlphanumeric("abc")  = true
         GosuStringUtil.isAlphanumeric("ab c") = true
         GosuStringUtil.isAlphanumeric("ab2c") = true
         GosuStringUtil.isAlphanumeric("ab-c") = false
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if only contains letters, digits or space, and is non-null
      • isNumeric

        public static boolean isNumeric​(String str)

        Checks if the String contains only unicode digits. A decimal point is not a unicode digit and returns false.

        null will return false. An empty String ("") will return true.

         GosuStringUtil.isNumeric(null)   = false
         GosuStringUtil.isNumeric("")     = true
         GosuStringUtil.isNumeric("  ")   = false
         GosuStringUtil.isNumeric("123")  = true
         GosuStringUtil.isNumeric("12 3") = false
         GosuStringUtil.isNumeric("ab2c") = false
         GosuStringUtil.isNumeric("12-3") = false
         GosuStringUtil.isNumeric("12.3") = false
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if only contains digits, and is non-null
      • isNumericSpace

        public static boolean isNumericSpace​(String str)

        Checks if the String contains only unicode digits or space (' '). A decimal point is not a unicode digit and returns false.

        null will return false. An empty String ("") will return true.

         GosuStringUtil.isNumeric(null)   = false
         GosuStringUtil.isNumeric("")     = true
         GosuStringUtil.isNumeric("  ")   = true
         GosuStringUtil.isNumeric("123")  = true
         GosuStringUtil.isNumeric("12 3") = true
         GosuStringUtil.isNumeric("ab2c") = false
         GosuStringUtil.isNumeric("12-3") = false
         GosuStringUtil.isNumeric("12.3") = false
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if only contains digits or space, and is non-null
      • isHexidecimal

        public static boolean isHexidecimal​(String str)

        Checks if the String contains only hexidecimal digits. A decimal point is not a hexidecimal digit and returns false.

        null will return false. An empty String ("") will return true.

         GosuStringUtil.isHexidecimal(null)   = false
         GosuStringUtil.isHexidecimal("")     = true
         GosuStringUtil.isHexidecimal("  ")   = false
         GosuStringUtil.isHexidecimal("123")  = true
         GosuStringUtil.isHexidecimal("12 3") = false
         GosuStringUtil.isHexidecimal("ab2c") = true
         GosuStringUtil.isHexidecimal("ah2c") = false
         GosuStringUtil.isHexidecimal("12-3") = false
         GosuStringUtil.isHexidecimal("12.3") = false
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if only contains hexidecimal digits, and is non-null
      • isHexidecimalSpace

        public static boolean isHexidecimalSpace​(String str)

        Checks if the String contains only hexidecimal digits or space (' '). A decimal point is not a hexidecimal digit and returns false.

        null will return false. An empty String ("") will return true.

         GosuStringUtil.isHexidecimal(null)   = false
         GosuStringUtil.isHexidecimal("")     = true
         GosuStringUtil.isHexidecimal("  ")   = true
         GosuStringUtil.isHexidecimal("123")  = true
         GosuStringUtil.isHexidecimal("12 3") = true
         GosuStringUtil.isHexidecimal("ab2c") = true
         GosuStringUtil.isHexidecimal("ah2c") = false
         GosuStringUtil.isHexidecimal("12-3") = false
         GosuStringUtil.isHexidecimal("12.3") = false
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if only contains hexidecimal digits or space, and is non-null
      • isWhitespace

        public static boolean isWhitespace​(String str)

        Checks if the String contains only whitespace.

        null will return false. An empty String ("") will return true.

         GosuStringUtil.isWhitespace(null)   = false
         GosuStringUtil.isWhitespace("")     = true
         GosuStringUtil.isWhitespace("  ")   = true
         GosuStringUtil.isWhitespace("abc")  = false
         GosuStringUtil.isWhitespace("ab2c") = false
         GosuStringUtil.isWhitespace("ab-c") = false
         
        Parameters:
        str - the String to check, may be null
        Returns:
        true if only contains whitespace, and is non-null
        Since:
        2.0
      • defaultString

        public static String defaultString​(String str)

        Returns either the passed in String, or if the String is null, an empty String ("").

         GosuStringUtil.defaultString(null)  = ""
         GosuStringUtil.defaultString("")    = ""
         GosuStringUtil.defaultString("bat") = "bat"
         
        Parameters:
        str - the String to check, may be null
        Returns:
        the passed in String, or the empty String if it was null
        See Also:
        String.valueOf(Object)
      • defaultString

        public static String defaultString​(String str,
                                           String defaultStr)

        Returns either the passed in String, or if the String is null, the value of defaultStr.

         GosuStringUtil.defaultString(null, "NULL")  = "NULL"
         GosuStringUtil.defaultString("", "NULL")    = ""
         GosuStringUtil.defaultString("bat", "NULL") = "bat"
         
        Parameters:
        str - the String to check, may be null
        defaultStr - the default String to return if the input is null, may be null
        Returns:
        the passed in String, or the default if it was null
        See Also:
        String.valueOf(Object)
      • defaultIfEmpty

        public static String defaultIfEmpty​(String str,
                                            String defaultStr)

        Returns either the passed in String, or if the String is empty or null, the value of defaultStr.

         GosuStringUtil.defaultIfEmpty(null, "NULL")  = "NULL"
         GosuStringUtil.defaultIfEmpty("", "NULL")    = "NULL"
         GosuStringUtil.defaultIfEmpty("bat", "NULL") = "bat"
         GosuStringUtil.defaultIfEmpty("", null)      = null
         
        Parameters:
        str - the String to check, may be null
        defaultStr - the default String to return if the input is empty ("") or null, may be null
        Returns:
        the passed in String, or the default
        See Also:
        defaultString(String, String)
      • reverse

        public static String reverse​(String str)

        Reverses a String as per StringBuffer.reverse().

        A null String returns null.

         GosuStringUtil.reverse(null)  = null
         GosuStringUtil.reverse("")    = ""
         GosuStringUtil.reverse("bat") = "tab"
         
        Parameters:
        str - the String to reverse, may be null
        Returns:
        the reversed String, null if null String input
      • abbreviate

        public static String abbreviate​(String str,
                                        int maxWidth)

        Abbreviates a String using ellipses. This will turn "Now is the time for all good men" into "Now is the time for..."

        Specifically:

        • If str is less than maxWidth characters long, return it.
        • Else abbreviate it to (substring(str, 0, max-3) + "...").
        • If maxWidth is less than 4, throw an IllegalArgumentException.
        • In no case will it return a String of length greater than maxWidth.

         GosuStringUtil.abbreviate(null, *)      = null
         GosuStringUtil.abbreviate("", 4)        = ""
         GosuStringUtil.abbreviate("abcdefg", 6) = "abc..."
         GosuStringUtil.abbreviate("abcdefg", 7) = "abcdefg"
         GosuStringUtil.abbreviate("abcdefg", 8) = "abcdefg"
         GosuStringUtil.abbreviate("abcdefg", 4) = "a..."
         GosuStringUtil.abbreviate("abcdefg", 3) = IllegalArgumentException
         
        Parameters:
        str - the String to check, may be null
        maxWidth - maximum length of result String, must be at least 4
        Returns:
        abbreviated String, null if null String input
        Throws:
        IllegalArgumentException - if the width is too small
        Since:
        2.0
      • abbreviate

        public static String abbreviate​(String str,
                                        int offset,
                                        int maxWidth)

        Abbreviates a String using ellipses. This will turn "Now is the time for all good men" into "...is the time for..."

        Works like abbreviate(String, int), but allows you to specify a "left edge" offset. Note that this left edge is not necessarily going to be the leftmost character in the result, or the first character following the ellipses, but it will appear somewhere in the result.

        In no case will it return a String of length greater than maxWidth.

         GosuStringUtil.abbreviate(null, *, *)                = null
         GosuStringUtil.abbreviate("", 0, 4)                  = ""
         GosuStringUtil.abbreviate("abcdefghijklmno", -1, 10) = "abcdefg..."
         GosuStringUtil.abbreviate("abcdefghijklmno", 0, 10)  = "abcdefg..."
         GosuStringUtil.abbreviate("abcdefghijklmno", 1, 10)  = "abcdefg..."
         GosuStringUtil.abbreviate("abcdefghijklmno", 4, 10)  = "abcdefg..."
         GosuStringUtil.abbreviate("abcdefghijklmno", 5, 10)  = "...fghi..."
         GosuStringUtil.abbreviate("abcdefghijklmno", 6, 10)  = "...ghij..."
         GosuStringUtil.abbreviate("abcdefghijklmno", 8, 10)  = "...ijklmno"
         GosuStringUtil.abbreviate("abcdefghijklmno", 10, 10) = "...ijklmno"
         GosuStringUtil.abbreviate("abcdefghijklmno", 12, 10) = "...ijklmno"
         GosuStringUtil.abbreviate("abcdefghij", 0, 3)        = IllegalArgumentException
         GosuStringUtil.abbreviate("abcdefghij", 5, 6)        = IllegalArgumentException
         
        Parameters:
        str - the String to check, may be null
        offset - left edge of source String
        maxWidth - maximum length of result String, must be at least 4
        Returns:
        abbreviated String, null if null String input
        Throws:
        IllegalArgumentException - if the width is too small
        Since:
        2.0
      • difference

        public static String difference​(String str1,
                                        String str2)

        Compares two Strings, and returns the portion where they differ. (More precisely, return the remainder of the second String, starting from where it's different from the first.)

        For example, difference("i am a machine", "i am a robot") -> "robot".

         GosuStringUtil.difference(null, null) = null
         GosuStringUtil.difference("", "") = ""
         GosuStringUtil.difference("", "abc") = "abc"
         GosuStringUtil.difference("abc", "") = ""
         GosuStringUtil.difference("abc", "abc") = ""
         GosuStringUtil.difference("ab", "abxyz") = "xyz"
         GosuStringUtil.difference("abcde", "abxyz") = "xyz"
         GosuStringUtil.difference("abcde", "xyz") = "xyz"
         
        Parameters:
        str1 - the first String, may be null
        str2 - the second String, may be null
        Returns:
        the portion of str2 where it differs from str1; returns the empty String if they are equal
        Since:
        2.0
      • indexOfDifference

        public static int indexOfDifference​(String str1,
                                            String str2)

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

        For example, indexOfDifference("i am a machine", "i am a robot") -> 7

         GosuStringUtil.indexOfDifference(null, null) = -1
         GosuStringUtil.indexOfDifference("", "") = -1
         GosuStringUtil.indexOfDifference("", "abc") = 0
         GosuStringUtil.indexOfDifference("abc", "") = 0
         GosuStringUtil.indexOfDifference("abc", "abc") = -1
         GosuStringUtil.indexOfDifference("ab", "abxyz") = 2
         GosuStringUtil.indexOfDifference("abcde", "abxyz") = 2
         GosuStringUtil.indexOfDifference("abcde", "xyz") = 0
         
        Parameters:
        str1 - the first String, may be null
        str2 - the second String, may be null
        Returns:
        the index where str2 and str1 begin to differ; -1 if they are equal
        Since:
        2.0
      • indexOfDifference

        public static int indexOfDifference​(String[] strs)

        Compares all Strings in an array and returns the index at which the Strings begin to differ.

        For example, indexOfDifference(new String[] {"i am a machine", "i am a robot"}) -> 7

         GosuStringUtil.indexOfDifference(null) = -1
         GosuStringUtil.indexOfDifference(new String[] {}) = -1
         GosuStringUtil.indexOfDifference(new String[] {"abc"}) = -1
         GosuStringUtil.indexOfDifference(new String[] {null, null}) = -1
         GosuStringUtil.indexOfDifference(new String[] {"", ""}) = -1
         GosuStringUtil.indexOfDifference(new String[] {"", null}) = 0
         GosuStringUtil.indexOfDifference(new String[] {"abc", null, null}) = 0
         GosuStringUtil.indexOfDifference(new String[] {null, null, "abc"}) = 0
         GosuStringUtil.indexOfDifference(new String[] {"", "abc"}) = 0
         GosuStringUtil.indexOfDifference(new String[] {"abc", ""}) = 0
         GosuStringUtil.indexOfDifference(new String[] {"abc", "abc"}) = -1
         GosuStringUtil.indexOfDifference(new String[] {"abc", "a"}) = 1
         GosuStringUtil.indexOfDifference(new String[] {"ab", "abxyz"}) = 2
         GosuStringUtil.indexOfDifference(new String[] {"abcde", "abxyz"}) = 2
         GosuStringUtil.indexOfDifference(new String[] {"abcde", "xyz"}) = 0
         GosuStringUtil.indexOfDifference(new String[] {"xyz", "abcde"}) = 0
         GosuStringUtil.indexOfDifference(new String[] {"i am a machine", "i am a robot"}) = 7
         
        Parameters:
        strs - array of strings, entries may be null
        Returns:
        the index where the strings begin to differ; -1 if they are all equal
        Since:
        2.4
      • getCommonPrefix

        public static String getCommonPrefix​(String[] strs)

        Compares all Strings in an array and returns the initial sequence of characters that is common to all of them.

        For example, getCommonPrefix(new String[] {"i am a machine", "i am a robot"}) -> "i am a "

         GosuStringUtil.getCommonPrefix(null) = ""
         GosuStringUtil.getCommonPrefix(new String[] {}) = ""
         GosuStringUtil.getCommonPrefix(new String[] {"abc"}) = "abc"
         GosuStringUtil.getCommonPrefix(new String[] {null, null}) = ""
         GosuStringUtil.getCommonPrefix(new String[] {"", ""}) = ""
         GosuStringUtil.getCommonPrefix(new String[] {"", null}) = ""
         GosuStringUtil.getCommonPrefix(new String[] {"abc", null, null}) = ""
         GosuStringUtil.getCommonPrefix(new String[] {null, null, "abc"}) = ""
         GosuStringUtil.getCommonPrefix(new String[] {"", "abc"}) = ""
         GosuStringUtil.getCommonPrefix(new String[] {"abc", ""}) = ""
         GosuStringUtil.getCommonPrefix(new String[] {"abc", "abc"}) = "abc"
         GosuStringUtil.getCommonPrefix(new String[] {"abc", "a"}) = "a"
         GosuStringUtil.getCommonPrefix(new String[] {"ab", "abxyz"}) = "ab"
         GosuStringUtil.getCommonPrefix(new String[] {"abcde", "abxyz"}) = "ab"
         GosuStringUtil.getCommonPrefix(new String[] {"abcde", "xyz"}) = ""
         GosuStringUtil.getCommonPrefix(new String[] {"xyz", "abcde"}) = ""
         GosuStringUtil.getCommonPrefix(new String[] {"i am a machine", "i am a robot"}) = "i am a "
         
        Parameters:
        strs - array of String objects, entries may be null
        Returns:
        the initial sequence of characters that are common to all Strings in the array; empty String if the array is null, the elements are all null or if there is no common prefix.
        Since:
        2.4
      • getLevenshteinDistance

        public static int getLevenshteinDistance​(String s,
                                                 String t)

        Find the Levenshtein distance between two Strings.

        This is the number of changes needed to change one String into another, where each change is a single character modification (deletion, insertion or substitution).

        The previous implementation of the Levenshtein distance algorithm was from http://www.merriampark.com/ld.htm

        Chas Emerick has written an implementation in Java, which avoids an OutOfMemoryError which can occur when my Java implementation is used with very large strings.
        This implementation of the Levenshtein distance algorithm is from http://www.merriampark.com/ldjava.htm

         GosuStringUtil.getLevenshteinDistance(null, *)             = IllegalArgumentException
         GosuStringUtil.getLevenshteinDistance(*, null)             = IllegalArgumentException
         GosuStringUtil.getLevenshteinDistance("","")               = 0
         GosuStringUtil.getLevenshteinDistance("","a")              = 1
         GosuStringUtil.getLevenshteinDistance("aaapppp", "")       = 7
         GosuStringUtil.getLevenshteinDistance("frog", "fog")       = 1
         GosuStringUtil.getLevenshteinDistance("fly", "ant")        = 3
         GosuStringUtil.getLevenshteinDistance("elephant", "hippo") = 7
         GosuStringUtil.getLevenshteinDistance("hippo", "elephant") = 7
         GosuStringUtil.getLevenshteinDistance("hippo", "zzzzzzzz") = 8
         GosuStringUtil.getLevenshteinDistance("hello", "hallo")    = 1
         
        Parameters:
        s - the first String, must not be null
        t - the second String, must not be null
        Returns:
        result distance
        Throws:
        IllegalArgumentException - if either String input null
      • startsWith

        public static boolean startsWith​(String str,
                                         String prefix)

        Check if a String starts with a specified prefix.

        nulls are handled without exceptions. Two null references are considered to be equal. The comparison is case sensitive.

         GosuStringUtil.startsWith(null, null)      = true
         GosuStringUtil.startsWith(null, "abc")     = false
         GosuStringUtil.startsWith("abcdef", null)  = false
         GosuStringUtil.startsWith("abcdef", "abc") = true
         GosuStringUtil.startsWith("ABCDEF", "abc") = false
         
        Parameters:
        str - the String to check, may be null
        prefix - the prefix to find, may be null
        Returns:
        true if the String starts with the prefix, case sensitive, or both null
        Since:
        2.4
        See Also:
        String.startsWith(String)
      • startsWithIgnoreCase

        public static boolean startsWithIgnoreCase​(String str,
                                                   String prefix)

        Case insensitive check if a String starts with a specified prefix.

        nulls are handled without exceptions. Two null references are considered to be equal. The comparison is case insensitive.

         GosuStringUtil.startsWithIgnoreCase(null, null)      = true
         GosuStringUtil.startsWithIgnoreCase(null, "abc")     = false
         GosuStringUtil.startsWithIgnoreCase("abcdef", null)  = false
         GosuStringUtil.startsWithIgnoreCase("abcdef", "abc") = true
         GosuStringUtil.startsWithIgnoreCase("ABCDEF", "abc") = true
         
        Parameters:
        str - the String to check, may be null
        prefix - the prefix to find, may be null
        Returns:
        true if the String starts with the prefix, case insensitive, or both null
        Since:
        2.4
        See Also:
        String.startsWith(String)
      • startsWithAny

        public static boolean startsWithAny​(String string,
                                            String[] searchStrings)

        Check if a String starts with any of an array of specified strings.

         GosuStringUtil.startsWithAny(null, null)      = false
         GosuStringUtil.startsWithAny(null, new String[] {"abc"})  = false
         GosuStringUtil.startsWithAny("abcxyz", null)     = false
         GosuStringUtil.startsWithAny("abcxyz", new String[] {""}) = false
         GosuStringUtil.startsWithAny("abcxyz", new String[] {"abc"}) = true
         GosuStringUtil.startsWithAny("abcxyz", new String[] {null, "xyz", "abc"}) = true
         
        Parameters:
        string - the String to check, may be null
        searchStrings - the Strings to find, may be null or empty
        Returns:
        true if the String starts with any of the the prefixes, case insensitive, or both null
        Since:
        3.0
      • endsWith

        public static boolean endsWith​(String str,
                                       String suffix)

        Check if a String ends with a specified suffix.

        nulls are handled without exceptions. Two null references are considered to be equal. The comparison is case sensitive.

         GosuStringUtil.endsWith(null, null)      = true
         GosuStringUtil.endsWith(null, "def")     = false
         GosuStringUtil.endsWith("abcdef", null)  = false
         GosuStringUtil.endsWith("abcdef", "def") = true
         GosuStringUtil.endsWith("ABCDEF", "def") = false
         GosuStringUtil.endsWith("ABCDEF", "cde") = false
         
        Parameters:
        str - the String to check, may be null
        suffix - the suffix to find, may be null
        Returns:
        true if the String ends with the suffix, case sensitive, or both null
        Since:
        2.4
        See Also:
        String.endsWith(String)
      • endsWithIgnoreCase

        public static boolean endsWithIgnoreCase​(String str,
                                                 String suffix)

        Case insensitive check if a String ends with a specified suffix.

        nulls are handled without exceptions. Two null references are considered to be equal. The comparison is case insensitive.

         GosuStringUtil.endsWithIgnoreCase(null, null)      = true
         GosuStringUtil.endsWithIgnoreCase(null, "def")     = false
         GosuStringUtil.endsWithIgnoreCase("abcdef", null)  = false
         GosuStringUtil.endsWithIgnoreCase("abcdef", "def") = true
         GosuStringUtil.endsWithIgnoreCase("ABCDEF", "def") = true
         GosuStringUtil.endsWithIgnoreCase("ABCDEF", "cde") = false
         
        Parameters:
        str - the String to check, may be null
        suffix - the suffix to find, may be null
        Returns:
        true if the String ends with the suffix, case insensitive, or both null
        Since:
        2.4
        See Also:
        String.endsWith(String)
      • isAsciiAlphanumeric

        public static boolean isAsciiAlphanumeric​(char ch)

        Checks whether the character is ASCII 7 bit numeric.

           CharUtils.isAsciiAlphanumeric('a')  = true
           CharUtils.isAsciiAlphanumeric('A')  = true
           CharUtils.isAsciiAlphanumeric('3')  = true
           CharUtils.isAsciiAlphanumeric('-')  = false
           CharUtils.isAsciiAlphanumeric('\n') = false
           CharUtils.isAsciiAlphanumeric('©') = false
         
        Parameters:
        ch - the character to check
        Returns:
        true if between 48 and 57 or 65 and 90 or 97 and 122 inclusive
      • getLineNumberForIndex

        public static int getLineNumberForIndex​(String strSource,
                                                int iIndex)
      • getIndexForLineNumber

        public static int getIndexForLineNumber​(String strSource,
                                                int iLine)
      • getSHA1String

        public static String getSHA1String​(String s)