public interface CharSequence
GDK enhancements for CharSequence.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public boolean |
asBoolean()Coerces a CharSequence to a boolean value. |
<T> |
public T |
asType(Class<T> c)Provides a method to perform custom 'dynamic' type conversion to the given class using the as operator. |
|
public Pattern |
bitwiseNegate()Turns a CharSequence into a regular expression Pattern. |
|
public String |
capitalize()Convenience method to capitalize the first letter of a CharSequence (typically the first letter of a word). |
|
public String |
center(Number numberOfChars)Pads a CharSequence to a minimum length specified by numberOfChars by adding the space character around it as many times as needed so that it remains centered. |
|
public String |
center(Number numberOfChars, CharSequence padding)Pad a CharSequence to a minimum length specified by numberOfChars, appending the supplied padding CharSequence around the original as many times as needed keeping it centered. |
|
public boolean |
contains(CharSequence text)Provides an implementation of contains() like Collection.contains to make CharSequences more polymorphic. |
|
public boolean |
containsIgnoreCase(CharSequence searchString)Checks whether this CharSequence contains the searchString ignoring the caseConsiderations. |
|
public int |
count(CharSequence text)Counts the number of occurrences of a sub CharSequence. |
|
public String |
denormalize()Return a CharSequence with lines (separated by LF, CR/LF, or CR) terminated by the platform specific line separator. |
|
public String |
digest(String algorithm)digest the CharSequence instance |
|
public CharSequence |
drop(int num)Drops the given number of chars from the head of this CharSequence if they are available. |
|
public CharSequence |
dropRight(int num)Returns new CharSequence after removing the right num chars.
|
|
public String |
dropWhile(Closure condition)Creates a suffix of the given CharSequence by dropping as many characters as possible from the front of the original CharSequence such that calling the given closure condition evaluates to true when passed each of the dropped characters. |
<T> |
public T |
eachLine(Closure<T> closure)Iterates through this CharSequence line by line. |
<T> |
public T |
eachLine(int firstLine, Closure<T> closure)Iterates through this CharSequence line by line. |
|
public boolean |
endsWithAny(CharSequence suffixes)Tests if this CharSequence ends with any specified suffixes. |
|
public boolean |
endsWithIgnoreCase(CharSequence searchString)Checks whether this CharSequence ends with the searchString ignoring the case considerations. |
|
public String |
expand()Expands all tabs into spaces with tabStops of size 8. |
|
public String |
expand(int tabStop)Expands all tabs into spaces. |
|
public String |
expandLine(int tabStop)Expands all tabs into spaces. |
|
public String |
find(CharSequence regex)Finds the first occurrence of a regular expression String within a String. |
|
public String |
find(CharSequence regex, Closure closure)Returns the result of calling a closure with the first occurrence of a regular expression found within a CharSequence. |
|
public String |
find(Pattern pattern)Finds the first occurrence of a compiled regular expression Pattern within a String. |
|
public String |
find(Pattern pattern, Closure closure)Returns the result of calling a closure with the first occurrence of a compiled regular expression found within a String. |
|
public List<String> |
findAll(CharSequence regex)Returns a (possibly empty) list of all occurrences of a regular expression (provided as a CharSequence) found within a CharSequence. |
<T> |
public List<T> |
findAll(CharSequence regex, Closure<T> closure)Finds all occurrences of a regular expression string within a CharSequence. |
|
public List<String> |
findAll(Pattern pattern)Returns a (possibly empty) list of all occurrences of a regular expression (in Pattern format) found within a CharSequence. |
<T> |
public List<T> |
findAll(Pattern pattern, Closure<T> closure)Finds all occurrences of a compiled regular expression Pattern within a CharSequence. |
|
public String |
getAt(Collection indices)Selects a List of characters from a CharSequence using a Collection to identify the indices to be selected. |
|
public String |
getAt(EmptyRange range)Supports the range subscript operator for CharSequence or StringBuffer with EmptyRange |
|
public CharSequence |
getAt(int index)Supports the subscript operator for CharSequence. |
|
public CharSequence |
getAt(IntRange range)Supports the range subscript operator for CharSequence with IntRange. |
|
public CharSequence |
getAt(Range range)Supports the range subscript operator for CharSequence. |
|
public char[] |
getChars()Converts the given CharSequence into an array of characters. |
|
public int[] |
getCodePoints()Converts the given CharSequence into an array of code point values including any surrogate pairs as per String.codePoints. |
|
public boolean |
isAllWhitespace()Returns true if a CharSequence only contains whitespace characters. |
|
public boolean |
isBigDecimal()Determines if a CharSequence can be parsed as a BigDecimal. |
|
public boolean |
isBigInteger()Determines if a CharSequence can be parsed as a BigInteger. |
|
public boolean |
isBlank()Tests if this CharSequence is blank. |
|
public boolean |
isCase(Object switchValue)'Case' implementation for a CharSequence, which uses equals between the toString() of the caseValue and the switchValue. |
|
public boolean |
isDouble()Determines if a CharSequence can be parsed as a Double. |
|
public boolean |
isFloat()Determines if a CharSequence can be parsed as a Float. |
|
public boolean |
isInteger()Determines if a CharSequence can be parsed as an Integer. |
|
public boolean |
isLong()Determines if a CharSequence can be parsed as a Long. |
|
public boolean |
isNotCase(Object switchValue)
|
|
public boolean |
isNumber()Determines if a CharSequence can be parsed as a Number. |
|
public StringBuilder |
leftShift(Object value)Overloads the left shift operator to provide an easy way to append multiple objects as string representations to a CharSequence. |
|
public boolean |
matches(Pattern pattern)Determines if a CharSequence matches the given regular expression. |
|
public String |
md5()Calculate md5 of the CharSequence instance |
|
public String |
minus(Object target)Removes a part of a CharSequence by replacing the first occurrence of target within self with empty string and returns the result. |
|
public String |
minus(Pattern pattern)Removes a part of a CharSequence. |
|
public String |
multiply(Number factor)Repeats a CharSequence a certain number of times. |
|
public String |
next()Overloads the ++ operator for the class CharSequence.
|
|
public String |
next(int n)A variant of next with an integer count parameter; equivalent to calling next() count times. |
|
public String |
normalize()Returns a String with linefeeds and carriage returns normalized to linefeeds. |
|
public String |
padLeft(Number numberOfChars)Pads a CharSequence to a minimum length specified by numberOfChars by adding the space character
to the left as many times as needed. |
|
public String |
padLeft(Number numberOfChars, CharSequence padding)Pads a CharSequence to a minimum length specified by numberOfChars, adding the supplied
padding CharSequence as many times as needed to the left. |
|
public String |
padRight(Number numberOfChars)Pads a CharSequence to a minimum length specified by numberOfChars by adding the space
character to the right as many times as needed. |
|
public String |
padRight(Number numberOfChars, CharSequence padding)Pads a CharSequence to a minimum length specified by numberOfChars, adding the supplied padding
CharSequence as many times as needed to the right. |
|
public String |
plus(Object right)Appends the String representation of the given operand to this CharSequence. |
|
public String |
previous()Overloads the -- operator for the class CharSequence.
|
|
public String |
previous(int n)A variant of previous with an integer count parameter; equivalent to calling previous() count times. |
|
public List<String> |
readLines()Returns the lines of a CharSequence as a List of String. |
|
public String |
replace(Map<CharSequence, CharSequence> replacements)Replaces all occurrences of replacement CharSequences (supplied via a map) within a provided CharSequence. |
|
public String |
replace(int capacity, Map<CharSequence, CharSequence> replacements)Replaces all occurrences of replacement CharSequences (supplied via a map) within a provided CharSequence with control over the internally created StringBuilder's capacity. |
|
public String |
replaceAll(CharSequence regex, CharSequence replacement)Replaces each substring of this CharSequence that matches the given regular expression with the given replacement. |
|
public String |
replaceAll(CharSequence regex, Closure closure)Replaces all occurrences of a captured group by the result of calling a closure on that text. |
|
public String |
replaceAll(Pattern pattern, CharSequence replacement)Replaces all substrings of a CharSequence that match the given compiled regular expression with the given replacement. |
|
public String |
replaceAll(Pattern pattern, Closure closure)Replaces all occurrences of a captured group by the result of a closure call on that text. |
|
public String |
replaceFirst(CharSequence regex, CharSequence replacement)Replaces the first substring of this CharSequence that matches the given regular expression with the given replacement. |
|
public String |
replaceFirst(CharSequence regex, Closure closure)Replaces the first occurrence of a captured group by the result of a closure call on that text. |
|
public String |
replaceFirst(Pattern pattern, CharSequence replacement)Replaces the first substring of a CharSequence that matches the given compiled regular expression with the given replacement. |
|
public String |
replaceFirst(Pattern pattern, Closure closure)Replaces the first occurrence of a captured group by the result of a closure call on that text. |
|
public String |
reverse()Creates a String which is the reverse (backwards) of this CharSequence |
|
public String |
sha256()Calculate SHA-256 of the CharSequence instance |
|
public int |
size()Provides the standard Groovy size() method for CharSequence. |
|
public String[] |
split()Splits a CharSequence (with whitespace as delimiter). |
<T> |
public T |
splitEachLine(CharSequence regex, Closure<T> closure)Iterates through the given CharSequence line by line, splitting each line using the given regex delimiter. |
<T> |
public T |
splitEachLine(Pattern pattern, Closure<T> closure)Iterates through the given CharSequence line by line, splitting each line using the given separator Pattern. |
|
public boolean |
startsWithAny(CharSequence prefixes)Tests if this CharSequence starts with any specified prefixes. |
|
public boolean |
startsWithIgnoreCase(CharSequence searchString)Checks whether this CharSequence starts with the searchString ignoring the case considerations. |
|
public String |
stripIndent()Strips leading spaces from every line in a CharSequence. |
|
public String |
stripIndent(boolean forceGroovyBehavior)Same logic as CharSequence.stripIndent if forceGroovyBehavior is true,
otherwise Java 13's stripIndent will be invoked. |
|
public String |
stripIndent(int numChars)Strips numChars leading characters from every line in a CharSequence.
|
|
public String |
stripMargin()Strips leading whitespace/control characters followed by '|' from every line in a CharSequence. |
|
public String |
stripMargin(char marginChar)Strips leading whitespace/control characters followed by marginChar from
every line in a CharSequence.
|
|
public String |
stripMargin(CharSequence marginChar)Strips leading whitespace/control characters followed by marginChar from
every line in a CharSequence. |
|
public CharSequence |
take(int num)Returns the first num elements from this CharSequence.
|
|
public CharSequence |
takeAfter(CharSequence searchString)Returns the CharSequence that exists after the first occurrence of the given
searchString in this CharSequence. |
|
public CharSequence |
takeBefore(CharSequence searchString)Returns the CharSequence that exists before the first occurrence of the given
searchString in this CharSequence. |
|
public CharSequence |
takeBetween(CharSequence from, CharSequence to)Returns the CharSequence that is in between the first occurrence of the given from and to
CharSequences and empty if the unavailable inputs are given. |
|
public CharSequence |
takeBetween(CharSequence enclosure)Takes the characters between the first occurrence of the two subsequent enclosure strings. |
|
public CharSequence |
takeBetween(CharSequence from, CharSequence to, int occurrence)Returns the CharSequence that is in between the given the nth (specified by occurrence) pair of from and to CharSequences and empty if the unavailable inputs are given. |
|
public CharSequence |
takeBetween(CharSequence enclosure, int occurrence)Takes the characters between nth (specified by occurrence) pair of enclosure strings. |
|
public CharSequence |
takeRight(int num)Returns the last num elements from this CharSequence. |
|
public String |
takeWhile(Closure condition)Returns the longest prefix of this CharSequence where each element passed to the given closure evaluates to true. |
|
public BigDecimal |
toBigDecimal()Parses a CharSequence into a BigDecimal |
|
public BigInteger |
toBigInteger()Parses a CharSequence into a BigInteger |
|
public Double |
toDouble()Parses a CharSequence into a Double. |
|
public Float |
toFloat()Parses a CharSequence into a Float. |
|
public Integer |
toInteger()Parses a CharSequence into an Integer. |
|
public List<String> |
toList()Converts the given CharSequence into a List of Strings of one character. |
|
public Long |
toLong()Parses a CharSequence into a Long |
|
public Set<String> |
toSet()Converts the given CharSequence into a Set of unique Strings of one character. |
|
public Short |
toShort()Parses a CharSequence into a Short. |
|
public URI |
toURI()Transforms a CharSequence representing a URI into a URI object. |
|
public URL |
toURL()Transforms a CharSequence representing a URL into a URL object. |
|
public List<String> |
tokenize()Tokenizes a CharSequence (with a whitespace as the delimiter). |
|
public List<String> |
tokenize(Character delimiter)Tokenizes a CharSequence based on the given character delimiter. |
|
public List<String> |
tokenize(CharSequence delimiters)Tokenizes a CharSequence based on the given CharSequence. |
|
public String |
tr(CharSequence sourceSet, CharSequence replacementSet)Translates a CharSequence by replacing characters from the sourceSet with characters from replacementSet. |
|
public String |
uncapitalize()Convenience method to uncapitalize the first letter of a CharSequence (typically the first letter of a word). |
|
public String |
unexpand()Replaces sequences of whitespaces with tabs using tabStops of size 8. |
|
public String |
unexpand(int tabStop)Replaces sequences of whitespaces with tabs. |
|
public String |
unexpandLine(int tabStop)Replaces sequences of whitespaces with tabs within a line. |
Coerces a CharSequence to a boolean value. A sequence string is coerced to
false if it is of length 0, and to true otherwise.
Provides a method to perform custom 'dynamic' type conversion
to the given class using the as operator.
c - the desired classTurns a CharSequence into a regular expression Pattern.
Convenience method to capitalize the first letter of a CharSequence (typically the first letter of a word). Example usage:
assert 'h'.capitalize() == 'H'
assert 'hello'.capitalize() == 'Hello'
assert 'hello world'.capitalize() == 'Hello world'
assert 'Hello World' ==
'hello world'.split(' ').collect{ it.capitalize() }.join(' ')
Pads a CharSequence to a minimum length specified by numberOfChars by adding the space character around it as many times as needed so that it remains centered.
If the String is already the same size or bigger than the target numberOfChars, then the original String is returned. An example:
['A', 'BB', 'CCC', 'DDDD'].each{ println '|' + it.center(6) + '|' }
will produce output like:
| A |
| BB |
| CCC |
| DDDD |
numberOfChars - the total minimum number of characters of the result Pad a CharSequence to a minimum length specified by numberOfChars, appending the supplied padding CharSequence around the original as many times as needed keeping it centered.
If the String is already the same size or bigger than the target numberOfChars, then the original String is returned. An example:
['A', 'BB', 'CCC', 'DDDD'].each{ println '|' + it.center(6, '+') + '|' }
will produce output like:
|++A+++|
|++BB++|
|+CCC++|
|+DDDD+|
numberOfChars - the total minimum number of characters of the resulting CharSequencepadding - the characters used for paddingProvides an implementation of contains() like Collection.contains to make CharSequences more polymorphic.
text - the CharSequence to look for Checks whether this CharSequence contains the searchString ignoring the caseConsiderations.
searchString - CharSequence being checked against thistrue if the character sequence represented by the argument exists in this CharSequence
ignoring the case considerations. false otherwise. Returns false if the argument is nullCounts the number of occurrences of a sub CharSequence.
text - a sub CharSequenceReturn a CharSequence with lines (separated by LF, CR/LF, or CR) terminated by the platform specific line separator.
digest the CharSequence instance
Drops the given number of chars from the head of this CharSequence if they are available.
def text = "Groovy"
assert text.drop( 0 ) == 'Groovy'
assert text.drop( 2 ) == 'oovy'
assert text.drop( 7 ) == ''
num - the number of characters to drop from this Stringnum ones,
or else an empty String, if this CharSequence has less than num characters. Returns new CharSequence after removing the right num chars.
Returns empty String if the num is greater than the length of the CharSequence.
def text = "groovy"
assert text.dropRight( 3 ) == 'gro'
assert text.dropRight( 6 ) == ''
assert text.dropRight( 0 ) == 'groovy'
assert text.dropRight( -1 ) == 'groovy'
assert text.dropRight( 10 ) == ''
num - number of charactersnum chars and empty of the num is greater than the
length of the CharSequenceCreates a suffix of the given CharSequence by dropping as many characters as possible from the front of the original CharSequence such that calling the given closure condition evaluates to true when passed each of the dropped characters.
def text = "Groovy"
assert text.dropWhile{ false } == 'Groovy'
assert text.dropWhile{ true } == ''
assert text.dropWhile{ it < 'Z' } == 'roovy'
assert text.dropWhile{ it != 'v' } == 'vy'
condition - the closure that while continuously evaluating to true will cause us to drop elements from
the front of the original CharSequenceIterates through this CharSequence line by line. Each line is passed to the given 1 or 2 arg closure. If a 2 arg closure is found the line count is passed as the second argument.
closure - a closureIterates through this CharSequence line by line. Each line is passed to the given 1 or 2 arg closure. If a 2 arg closure is found the line count is passed as the second argument.
firstLine - the line number value used for the first line (default is 1, set to 0 to start counting from 0)closure - a closure (arg 1 is line, optional arg 2 is line number)Tests if this CharSequence ends with any specified suffixes.
true if this CharSequence ends with any specified suffixes Checks whether this CharSequence ends with the searchString ignoring the case considerations.
searchString - CharSequence bring checked against thistrue if the character sequence represented by the argument is a suffix of this CharSequence
ignoring the case considerations. false otherwise. Returns false if the argument is nullExpands all tabs into spaces with tabStops of size 8.
Expands all tabs into spaces. If the CharSequence has multiple lines, expand each line - restarting tab stops at the start of each line.
tabStop - The number of spaces a tab representsExpands all tabs into spaces. Assumes the CharSequence represents a single line of text.
tabStop - The number of spaces a tab representsFinds the first occurrence of a regular expression String within a String. If the regex doesn't match, null will be returned.
For example, if the regex doesn't match the result is null:
assert "New York, NY".find(/\d{5}/) == null
If it does match, we get the matching string back:
assert "New York, NY 10292-0098".find(/\d{5}/) == "10292"
If we have capture groups in our expression, we still get back the full match
assert "New York, NY 10292-0098".find(/(\d{5})-?(\d{4})/) == "10292-0098"
regex - the capturing regexReturns the result of calling a closure with the first occurrence of a regular expression found within a CharSequence. If the regex doesn't match, the closure will not be called and find will return null.
regex - the capturing regex CharSequenceclosure - the closure that will be passed the full match, plus each of the capturing groups (if any)Finds the first occurrence of a compiled regular expression Pattern within a String. If the pattern doesn't match, null will be returned.
For example, if the pattern doesn't match the result is null:
assert "New York, NY".find(~/\d{5}/) == null
If it does match, we get the matching string back:
assert "New York, NY 10292-0098".find(~/\d{5}/) == "10292"
If we have capture groups in our expression, the groups are ignored and
we get back the full match:
assert "New York, NY 10292-0098".find(~/(\d{5})-?(\d{4})/) == "10292-0098"
If you need to work with capture groups, then use the closure version
of this method or use Groovy's matcher operators or use eachMatch.
pattern - the compiled regex PatternReturns the result of calling a closure with the first occurrence of a compiled regular expression found within a String. If the regex doesn't match, the closure will not be called and find will return null.
For example, if the pattern doesn't match, the result is null:
assert "New York, NY".find(~/\d{5}/) { match -> return "-$match-"} == null
If it does match and we don't have any capture groups in our regex, there is a single parameter
on the closure that the match gets passed to:
assert "New York, NY 10292-0098".find(~/\d{5}/) { match -> return "-$match-"} == "-10292-"
If we have capture groups in our expression, our closure has one parameter for the match, followed by
one for each of the capture groups:
assert "New York, NY 10292-0098".find(~/(\d{5})-?(\d{4})/) { match, zip, plusFour ->
assert match == "10292-0098"
assert zip == "10292"
assert plusFour == "0098"
return zip
} == "10292"
If we have capture groups in our expression, and our closure has one parameter,
the closure will be passed an array with the first element corresponding to the whole match,
followed by an element for each of the capture groups:
assert "New York, NY 10292-0098".find(~/(\d{5})-?(\d{4})/) { array ->
assert array[0] == "10292-0098"
assert array[1] == "10292"
assert array[2] == "0098"
return array[1]
} == "10292"
If a capture group is optional, and doesn't match, then the corresponding value
for that capture group passed to the closure will be null as illustrated here:
assert "adsf 233-9999 adsf".find(~/(\d{3})?-?(\d{3})-(\d{4})/) { match, areaCode, exchange, stationNumber ->
assert "233-9999" == match
assert null == areaCode
assert "233" == exchange
assert "9999" == stationNumber
return "$exchange$stationNumber"
} == "2339999"
pattern - the compiled regex Patternclosure - the closure that will be passed the full match, plus each of the capturing groups (if any)Returns a (possibly empty) list of all occurrences of a regular expression (provided as a CharSequence) found within a CharSequence.
For example, if the regex doesn't match, it returns an empty list:
assert "foo".findAll(/(\w*) Fish/) == []
Any regular expression matches are returned in a list, and all regex capture groupings are ignored, only the full match is returned:
def expected = ["One Fish", "Two Fish", "Red Fish", "Blue Fish"]
assert "One Fish, Two Fish, Red Fish, Blue Fish".findAll(/(\w*) Fish/) == expected
If you need to work with capture groups, then use the closure version
of this method or use Groovy's matcher operators or use eachMatch.
regex - the capturing regex CharSequenceFinds all occurrences of a regular expression string within a CharSequence. Any matches are passed to the specified closure. The closure is expected to have the full match in the first parameter. If there are any capture groups, they will be placed in subsequent parameters.
If there are no matches, the closure will not be called, and an empty List will be returned.
For example, if the regex doesn't match, it returns an empty list:
assert "foo".findAll(/(\w*) Fish/) { match, firstWord -> return firstWord } == []
Any regular expression matches are passed to the closure, if there are no capture groups, there will be one parameter for the match:
assert "I could not, would not, with a fox.".findAll(/.ould/) { match -> "${match}n't"} == ["couldn't", "wouldn't"]
If there are capture groups, the first parameter will be the match followed by one parameter for each capture group:
def orig = "There's a Wocket in my Pocket"
assert orig.findAll(/(.)ocket/) { match, firstLetter -> "$firstLetter > $match" } == ["W > Wocket", "P > Pocket"]
regex - the capturing regex CharSequenceclosure - will be passed the full match plus each of the capturing groups (if any)Returns a (possibly empty) list of all occurrences of a regular expression (in Pattern format) found within a CharSequence.
For example, if the pattern doesn't match, it returns an empty list:
assert "foo".findAll(~/(\w*) Fish/) == []
Any regular expression matches are returned in a list, and all regex capture groupings are ignored, only the full match is returned:
def expected = ["One Fish", "Two Fish", "Red Fish", "Blue Fish"]
assert "One Fish, Two Fish, Red Fish, Blue Fish".findAll(~/(\w*) Fish/) == expected
pattern - the compiled regex PatternFinds all occurrences of a compiled regular expression Pattern within a CharSequence. Any matches are passed to the specified closure. The closure is expected to have the full match in the first parameter. If there are any capture groups, they will be placed in subsequent parameters.
If there are no matches, the closure will not be called, and an empty List will be returned.
For example, if the pattern doesn't match, it returns an empty list:
assert "foo".findAll(~/(\w*) Fish/) { match, firstWord -> return firstWord } == []
Any regular expression matches are passed to the closure, if there are no capture groups, there will be one
parameter for the match:
assert "I could not, would not, with a fox.".findAll(~/.ould/) { match -> "${match}n't"} == ["couldn't", "wouldn't"]
If there are capture groups, the first parameter will be the match followed by one parameter for each capture group:
def orig = "There's a Wocket in my Pocket"
assert orig.findAll(~/(.)ocket/) { match, firstLetter -> "$firstLetter > $match" } == ["W > Wocket", "P > Pocket"]
pattern - the compiled regex Patternclosure - will be passed the full match plus each of the capturing groups (if any)Selects a List of characters from a CharSequence using a Collection to identify the indices to be selected.
indices - a Collection of indicesSupports the range subscript operator for CharSequence or StringBuffer with EmptyRange
range - an EmptyRangeSupports the subscript operator for CharSequence.
index - the index of the Character to getSupports the range subscript operator for CharSequence with IntRange.
range - an IntRangeSupports the range subscript operator for CharSequence.
range - a RangeConverts the given CharSequence into an array of characters.
Converts the given CharSequence into an array of code point values including any surrogate pairs as per String.codePoints.
Returns true if a CharSequence only contains whitespace characters.
Determines if a CharSequence can be parsed as a BigDecimal.
Determines if a CharSequence can be parsed as a BigInteger.
Tests if this CharSequence is blank.
true if this CharSequence is blank'Case' implementation for a CharSequence, which uses equals between the toString() of the caseValue and the switchValue. This allows CharSequence values to be used in switch statements. For example:
switch( str ) {
case 'one' :
// etc...
}
Note that this returns true for the case where both the
'switch' and 'case' operand is null.
switchValue - the switch valueDetermines if a CharSequence can be parsed as a Double.
Determines if a CharSequence can be parsed as a Float.
Determines if a CharSequence can be parsed as an Integer.
Determines if a CharSequence can be parsed as a Long.
Determines if a CharSequence can be parsed as a Number.
Overloads the left shift operator to provide an easy way to append multiple objects as string representations to a CharSequence.
value - an ObjectDetermines if a CharSequence matches the given regular expression.
pattern - the regex Pattern to which the string of interest is to be matchedCalculate md5 of the CharSequence instance
Removes a part of a CharSequence by replacing the first occurrence of target within self with empty string and returns the result.
target - an object representing the part to removeRemoves a part of a CharSequence. This replaces the first occurrence of the pattern within self with empty string and returns the result.
pattern - a Pattern representing the part to removeRepeats a CharSequence a certain number of times.
factor - the number of times the CharSequence should be repeated Overloads the ++ operator for the class CharSequence.
It increments the last character in the given CharSequence. If the last
character in the CharSequence is Character.MAX_VALUE a Character.MIN_VALUE
will be appended. The empty CharSequence is incremented to a string
consisting of the character Character.MIN_VALUE.
A variant of next with an integer count parameter; equivalent to calling next() count times.
assert 'a'.next(1) == 'a'.next()
assert 'a'.next(4) == 'e'
assert 'a'.next(0) == 'a'
assert 'a'.next(25) == 'z'
assert 'A'.next(32) == 'a'
assert (0..4).collect('a'::next) == 'a'..'e'
assert 'car'.next(2) == 'cat'
n - how many times to incrementReturns a String with linefeeds and carriage returns normalized to linefeeds.
Pads a CharSequence to a minimum length specified by numberOfChars by adding the space character
to the left as many times as needed.
If the String is already the same size or bigger than the target numberOfChars, then the original String is returned. An example:
println 'Numbers:'
[1, 10, 100, 1000].each{ println it.toString().padLeft(5) }
will produce output like:
Numbers:
1
10
100
1000
numberOfChars - the total minimum number of characters of the resulting CharSequence Pads a CharSequence to a minimum length specified by numberOfChars, adding the supplied
padding CharSequence as many times as needed to the left.
If the CharSequence is already the same size or bigger than the target numberOfChars, then the
toString() of the original CharSequence is returned. An example:
println 'Numbers:'
[1, 10, 100, 1000].each{ println it.toString().padLeft(5, '*') }
[2, 20, 200, 2000].each{ println it.toString().padLeft(5, '*_') }
will produce output like:
Numbers:
****1
***10
**100
*1000
*_*_2
*_*20
*_200
*2000
numberOfChars - the total minimum number of characters of the resulting CharSequencepadding - the characters used for padding Pads a CharSequence to a minimum length specified by numberOfChars by adding the space
character to the right as many times as needed.
If the CharSequence is already the same size or bigger than the target numberOfChars,
then the toString() of the original CharSequence is returned. An example:
['A', 'BB', 'CCC', 'DDDD'].each{ println it.padRight(5) + it.size() }
will produce output like:
A 1
BB 2
CCC 3
DDDD 4
numberOfChars - the total minimum number of characters of the resulting string Pads a CharSequence to a minimum length specified by numberOfChars, adding the supplied padding
CharSequence as many times as needed to the right.
If the CharSequence is already the same size or bigger than the target numberOfChars,
then the toString() of the original CharSequence is returned. An example:
['A', 'BB', 'CCC', 'DDDD'].each{ println it.padRight(5, '#') + it.size() }
will produce output like:
A####1
BB###2
CCC##3
DDDD#4
numberOfChars - the total minimum number of characters of the resulting CharSequencepadding - the characters used for paddingAppends the String representation of the given operand to this CharSequence.
right - any Object Overloads the -- operator for the class CharSequence.
It decrements the last character in the given CharSequence. If the
last character in the CharSequence is Character.MIN_VALUE it will be deleted.
The empty CharSequence can't be decremented.
A variant of previous with an integer count parameter; equivalent to calling previous() count times.
assert 'b'.previous(1) == 'b'.previous()
assert 'e'.previous(4) == 'a'
assert 'a'.previous(0) == 'a'
assert 'z'.previous(25) == 'a'
assert 'a'.previous(32) == 'A'
assert (0..4).collect('z'::previous) == 'z'..'v'
assert 'cat'.previous(2) == 'car'
n - how many times to decrementReturns the lines of a CharSequence as a List of String.
Replaces all occurrences of replacement CharSequences (supplied via a map) within a provided CharSequence.
assert 'foobar'.replace(f:'b', foo:'bar') == 'boobar'
assert 'foobar'.replace(foo:'bar', f:'b') == 'barbar'
def replacements = [foo:'bar', f:'b', b: 'f', bar:'boo']
assert 'foobar'.replace(replacements) == 'barfar'
replacements - a map of before (key) and after (value) pairs processed in the natural order of the mapReplaces all occurrences of replacement CharSequences (supplied via a map) within a provided CharSequence with control over the internally created StringBuilder's capacity. This method uses a StringBuilder internally. Java auto-expands a StringBuilder's capacity if needed. In rare circumstances, the overhead involved with repeatedly expanding the StringBuilder may become significant. If you have measured the performance of your application and found this to be a significant bottleneck, use this variant to have complete control over the internally created StringBuilder's capacity.
assert 'foobar'.replace(9, [r:'rbaz']) == 'foobarbaz'
assert 'foobar'.replace(1, [fooba:'']) == 'r'
capacity - an optimization parameter, set to size after replacements or a little larger to avoid resizing overheadsreplacements - a map of before (key) and after (value) pairs processed in the natural order of the mapReplaces each substring of this CharSequence that matches the given regular expression with the given replacement.
assert "foo".replaceAll('o', 'X') == 'fXX'
regex - the capturing regexreplacement - the string to be substituted for each matchReplaces all occurrences of a captured group by the result of calling a closure on that text.
Examples:
assert "hello world".replaceAll("(o)") { it[0].toUpperCase() } == "hellO wOrld"
assert "foobar-FooBar-".replaceAll("(([fF][oO]{2})[bB]ar)", { Object[] it -> it[0].toUpperCase() }) == "FOOBAR-FOOBAR-"
// Here,
// it[0] is the global string of the matched group
// it[1] is the first string in the matched group
// it[2] is the second string in the matched group
assert "foobar-FooBar-".replaceAll("(([fF][oO]{2})[bB]ar)", { x, y, z -> z.toUpperCase() }) == "FOO-FOO-"
// Here,
// x is the global string of the matched group
// y is the first string in the matched group
// z is the second string in the matched group
Note that unlike String.replaceAll(String regex, String replacement), where the replacement string
treats '$' and '\' specially (for group substitution), the result of the closure is converted to a string
and that value is used literally for the replacement.regex - the capturing regexclosure - the closure to apply on each captured groupReplaces all substrings of a CharSequence that match the given compiled regular expression with the given replacement.
Note that backslashes (\) and dollar signs ($) in the
replacement string may cause the results to be different from if it were
being treated as a literal replacement string; see
Matcher.replaceAll.
Use Matcher.quoteReplacement to suppress the special
meaning of these characters, if desired.
assert "foo".replaceAll(~'o', 'X') == 'fXX'
pattern - the regex Pattern to which the CharSequence of interest is to be matchedreplacement - the CharSequence to be substituted for the first matchReplaces all occurrences of a captured group by the result of a closure call on that text.
For examples,
assert "hello world".replaceAll(~"(o)") { it[0].toUpperCase() } == "hellO wOrld"
assert "foobar-FooBar-".replaceAll(~"(([fF][oO]{2})[bB]ar)", { it[0].toUpperCase() }) == "FOOBAR-FOOBAR-"
// Here,
// it[0] is the global string of the matched group
// it[1] is the first string in the matched group
// it[2] is the second string in the matched group
assert "foobar-FooBar-".replaceAll(~"(([fF][oO]{2})[bB]ar)", { Object[] it -> it[0].toUpperCase() }) == "FOOBAR-FOOBAR-"
// Here,
// it[0] is the global string of the matched group
// it[1] is the first string in the matched group
// it[2] is the second string in the matched group
assert "foobar-FooBar-".replaceAll("(([fF][oO]{2})[bB]ar)", { x, y, z -> z.toUpperCase() }) == "FOO-FOO-"
// Here,
// x is the global string of the matched group
// y is the first string in the matched group
// z is the second string in the matched group
Note that unlike String.replaceAll(String regex, String replacement), where the replacement string
treats '$' and '\' specially (for group substitution), the result of the closure is converted to a string
and that value is used literally for the replacement.
pattern - the capturing regex Patternclosure - the closure to apply on each captured groupReplaces the first substring of this CharSequence that matches the given regular expression with the given replacement.
regex - the capturing regexreplacement - the CharSequence to be substituted for each matchReplaces the first occurrence of a captured group by the result of a closure call on that text.
For example (with some replaceAll variants thrown in for comparison purposes),
assert "hello world".replaceFirst("(o)") { it[0].toUpperCase() } == "hellO world" // first match
assert "hello world".replaceAll("(o)") { it[0].toUpperCase() } == "hellO wOrld" // all matches
assert "one fish, two fish".replaceFirst(/([a-z]{3})\s([a-z]{4})/) { [one:1, two:2][it[1]] + '-' + it[2].toUpperCase() } == '1-FISH, two fish'
assert "one fish, two fish".replaceAll(/([a-z]{3})\s([a-z]{4})/) { [one:1, two:2][it[1]] + '-' + it[2].toUpperCase() } == '1-FISH, 2-FISH'
regex - the capturing regexclosure - the closure to apply on the first captured groupReplaces the first substring of a CharSequence that matches the given compiled regular expression with the given replacement.
Note that backslashes (\) and dollar signs ($) in the
replacement string may cause the results to be different from if it were
being treated as a literal replacement string; see
Matcher.replaceFirst.
Use Matcher.quoteReplacement to suppress the special
meaning of these characters, if desired.
assert "foo".replaceFirst('o', 'X') == 'fXo'
pattern - the regex Pattern to which the CharSequence of interest is to be matchedreplacement - the CharSequence to be substituted for the first matchReplaces the first occurrence of a captured group by the result of a closure call on that text.
For example (with some replaceAll variants thrown in for comparison purposes),
assert "hellO world" == "hello world".replaceFirst(~"(o)") { it[0].toUpperCase() } // first match
assert "hellO wOrld" == "hello world".replaceAll(~"(o)") { it[0].toUpperCase() } // all matches
assert '1-FISH, two fish' == "one fish, two fish".replaceFirst(~/([a-z]{3})\s([a-z]{4})/) { [one:1, two:2][it[1]] + '-' + it[2].toUpperCase() }
assert '1-FISH, 2-FISH' == "one fish, two fish".replaceAll(~/([a-z]{3})\s([a-z]{4})/) { [one:1, two:2][it[1]] + '-' + it[2].toUpperCase() }
pattern - the capturing regex Patternclosure - the closure to apply on the first captured groupCreates a String which is the reverse (backwards) of this CharSequence
Calculate SHA-256 of the CharSequence instance
Provides the standard Groovy size() method for CharSequence.
Splits a CharSequence (with whitespace as delimiter). Similar to tokenize, but returns an Array of String instead of a List.
Iterates through the given CharSequence line by line, splitting each line using the given regex delimiter. The list of tokens for each line is then passed to the given closure.
regex - the delimiting regular expressionclosure - a closureIterates through the given CharSequence line by line, splitting each line using the given separator Pattern. The list of tokens for each line is then passed to the given closure.
pattern - the regular expression Pattern for the delimiterclosure - a closureTests if this CharSequence starts with any specified prefixes.
true if this CharSequence starts with any specified prefixes. Checks whether this CharSequence starts with the searchString ignoring the case considerations.
searchString - CharSequence being checked against thistrue if the character sequence represented by the argument is a prefix of this CharSequence
ignoring the case considerations. false otherwise. Returns false if the argument is nullStrips leading spaces from every line in a CharSequence. The line with the least number of leading spaces determines the number to remove. Lines only containing whitespace are ignored when calculating the number of leading spaces to strip.
assert ' A\n B\nC' == ' A\n B\n C'.stripIndent()
toString() of the CharSequence Same logic as CharSequence.stripIndent if forceGroovyBehavior is true,
otherwise Java 13's stripIndent will be invoked.
forceGroovyBehavior - force groovy behavior to avoid conflicts with Java13's stripIndent Strips numChars leading characters from every line in a CharSequence.
assert 'DEF\n456' == '''ABCDEF\n123456'''.stripIndent(3)
numChars - The number of characters to stripStrips leading whitespace/control characters followed by '|' from every line in a CharSequence.
assert 'ABC\n123\n456' == '''ABC
|123
|456'''.stripMargin()
Strips leading whitespace/control characters followed by marginChar from
every line in a CharSequence.
assert 'ABC\n123\n456' == '''ABC
*123
*456'''.stripMargin('*')
marginChar - Any character that serves as margin delimiter Strips leading whitespace/control characters followed by marginChar from
every line in a CharSequence.
marginChar - Any character that serves as margin delimiter Returns the first num elements from this CharSequence.
def text = "Groovy"
assert text.take( 0 ) == ''
assert text.take( 2 ) == 'Gr'
assert text.take( 7 ) == 'Groovy'
num - the number of chars to take from this CharSequencenum chars,
or else the whole CharSequence if it has less than num elements. Returns the CharSequence that exists after the first occurrence of the given
searchString in this CharSequence.
def text = "Groovy development. Groovy team"
assert text.takeAfter( 'Groovy' ) == ' development. Groovy team'
assert text.takeAfter( 'team' ) == ''
assert text.takeAfter( '' ) == ''
assert text.takeAfter( 'Unavailable text' ) == ''
assert text.takeAfter( null ) == ''
searchString - CharSequence that is searched in this CharSequence Returns the CharSequence that exists before the first occurrence of the given
searchString in this CharSequence.
def text = "Groovy development. Groovy team"
assert text.takeBefore( ' Groovy ' ) == 'Groovy development.'
assert text.takeBefore( ' ' ) == 'Groovy'
assert text.takeBefore( 'Unavailable text' ) == ''
assert text.takeBefore( null ) == ''
searchString - CharSequence that is searched in this CharSequence Returns the CharSequence that is in between the first occurrence of the given from and to
CharSequences and empty if the unavailable inputs are given.
def text = "Groovy"
assert text.takeBetween( 'r', 'v' ) == 'oo'
assert text.takeBetween( 'r', 'z' ) == ''
assert text.takeBetween( 'a', 'r' ) == ''
from - beginning of searchto - end of search Takes the characters between the first occurrence of the two subsequent enclosure strings.
def text = "name = 'some name'"
assert text.takeBetween( "'" ) == 'some name'
assert text.takeBetween( 'z' ) == ''
enclosure - Enclosure CharSequenceenclosure strings Returns the CharSequence that is in between the given the nth (specified by occurrence) pair of
from and to CharSequences and empty if the unavailable inputs are given.
def text = "t1=10 ms, t2=100 ms"
assert text.takeBetween( '=', ' ', 0 ) == '10'
assert text.takeBetween( '=', ' ', 1 ) == '100'
assert text.takeBetween( 't1', 'z' ) == ''
from - beginning of searchto - end of searchoccurrence - nth occurrence that is to be returned. 0 represents first onefrom and to CharSequences and empty if the unavailable inputs are given. Takes the characters between nth (specified by occurrence) pair of enclosure strings.
def text = "t1='10' ms, t2='100' ms"
assert text.takeBetween( "'", 0 ) == '10'
assert text.takeBetween( "'", 1 ) == '100'
assert text.takeBetween( "'", 2 ) == ''
enclosure - Enclosure CharSequenceoccurrence - nth occurrence being returnedenclosure strings Returns the last num elements from this CharSequence.
def text = "Groovy"
assert text.takeRight( 0 ) == ''
assert text.takeRight( 2 ) == 'vy'
assert text.takeRight( 7 ) == 'Groovy'
num - the number of chars to take from this CharSequence from the rightnum chars,
or else the whole CharSequence if it has less than num elements.Returns the longest prefix of this CharSequence where each element passed to the given closure evaluates to true.
def text = "Groovy"
assert text.takeWhile{ it < 'A' } == ''
assert text.takeWhile{ it < 'Z' } == 'G'
assert text.takeWhile{ it != 'v' } == 'Groo'
assert text.takeWhile{ it < 'z' } == 'Groovy'
condition - the closure that must evaluate to true to continue taking elementsParses a CharSequence into a BigDecimal
Parses a CharSequence into a BigInteger
Parses a CharSequence into a Double.
Parses a CharSequence into a Float.
Parses a CharSequence into an Integer.
Converts the given CharSequence into a List of Strings of one character.
Parses a CharSequence into a Long
Converts the given CharSequence into a Set of unique Strings of one character.
Parses a CharSequence into a Short.
Transforms a CharSequence representing a URI into a URI object.
Transforms a CharSequence representing a URL into a URL object.
Tokenizes a CharSequence (with a whitespace as the delimiter).
Tokenizes a CharSequence based on the given character delimiter.
For example:
char pathSep = ':'
assert "/tmp:/usr".tokenize(pathSep) == ["/tmp", "/usr"]
delimiter - the delimiterTokenizes a CharSequence based on the given CharSequence. Each character in the CharSequence is a separate delimiter.
delimiters - the delimitersTranslates a CharSequence by replacing characters from the sourceSet with characters from replacementSet. If the first character from sourceSet appears in the CharSequence, it will be replaced with the first character from replacementSet. If the second character from sourceSet appears in the CharSequence, it will be replaced with the second character from replacementSet. and so on for all provided replacement characters.
Here is an example which converts the vowels in a word from lower to uppercase:
assert 'hello'.tr('aeiou', 'AEIOU') == 'hEllO'
A character range using regex-style syntax can also be used, e.g. here is an example which converts a word from lower to uppercase:
assert 'hello'.tr('a-z', 'A-Z') == 'HELLO'
Hyphens at the start or end of sourceSet or replacementSet are treated as normal hyphens and are not
considered to be part of a range specification. Similarly, a hyphen immediately after an earlier range
is treated as a normal hyphen. So, '-x', 'x-' have no ranges while 'a-c-e' has the range 'a-c' plus
the '-' character plus the 'e' character.
Unlike the unix tr command, Groovy's tr command supports reverse ranges, e.g.:
assert 'hello'.tr('z-a', 'Z-A') == 'HELLO'
If replacementSet is smaller than sourceSet, then the last character from replacementSet is used as the replacement for all remaining source characters as shown here:
assert 'Hello World!'.tr('a-z', 'A') == 'HAAAA WAAAA!'
If sourceSet contains repeated characters, the last specified replacement is used as shown here:
assert 'Hello World!'.tr('lloo', '1234') == 'He224 W4r2d!'
The functionality provided by tr can be achieved using regular expressions but tr provides a much more compact
notation and efficient implementation for certain scenarios.
sourceSet - the set of characters to translate fromreplacementSet - the set of replacement charactersStringConvenience method to uncapitalize the first letter of a CharSequence (typically the first letter of a word). Example usage:
assert 'H'.uncapitalize() == 'h'
assert 'Hello'.uncapitalize() == 'hello'
assert 'Hello world'.uncapitalize() == 'hello world'
assert 'Hello World'.uncapitalize() == 'hello World'
assert 'hello world' == 'Hello World'.split(' ').collect{ it.uncapitalize() }.join(' ')
Replaces sequences of whitespaces with tabs using tabStops of size 8.
Replaces sequences of whitespaces with tabs.
tabStop - The number of spaces a tab representsReplaces sequences of whitespaces with tabs within a line.
tabStop - The number of spaces a tab represents