String#
The following methods are available under the expr.str
attribute.
|
Vertically concatenate the string values in the column to a single string value. |
|
Check if string contains a substring that matches a pattern. |
|
Use the aho-corasick algorithm to find matches. |
|
Count all successive non-overlapping regex matches. |
|
Count all successive non-overlapping regex matches. |
|
Decode values using the provided encoding. |
|
Encode values using the provided encoding. |
|
Check if string values end with a substring. |
Returns a column with a separate row for every string character. |
|
|
Extract the target capture group from provided patterns. |
|
Extract all matches for the given regex pattern. |
|
Extract all capture groups for the given regex pattern. |
|
Return the index position of the first substring matching a pattern. |
Return the first n characters of each string in a String Series. |
|
|
Parse string values as JSON. |
|
Parse string values as JSON. |
|
Extract the first match of JSON string with the provided JSONPath expression. |
Return the length of each string as the number of bytes. |
|
Return the length of each string as the number of characters. |
|
Return the length of each string as the number of bytes. |
|
|
Return the string left justified in a string of length |
|
Remove leading characters. |
Return the length of each string as the number of characters. |
|
|
Pad the end of the string until it reaches the given length. |
|
Pad the start of the string until it reaches the given length. |
|
Parse integers with base radix from strings. |
|
Replace first matching regex/literal substring with a new string value. |
|
Replace all matching regex/literal substrings with a new string value. |
|
Use the aho-corasick algorithm to replace many matches. |
Returns string values in reversed order. |
|
|
Return the string right justified in a string of length |
|
Remove trailing characters. |
|
Extract a substring from each string value. |
|
Split the string by a substring. |
|
Split the string by a substring using |
|
Split the string by a substring, restricted to returning at most |
|
Check if string values start with a substring. |
|
Remove leading and trailing characters. |
|
Remove leading and trailing characters. |
|
Remove leading characters. |
|
Remove trailing characters. |
|
Remove prefix. |
|
Remove suffix. |
|
Convert a String column into a Date/Datetime/Time column. |
Return the last n characters of each string in a String Series. |
|
|
Convert a String column into a Date column. |
|
Convert a String column into a Datetime column. |
|
Convert a String column into a Decimal column. |
|
Convert a String column into an Int64 column with base radix. |
Transform to lowercase variant. |
|
Transform to titlecase variant. |
|
|
Convert a String column into a Time column. |
Transform to uppercase variant. |
|
|
Pad the start of the string with zeros until it reaches the given length. |