String#
The following methods are available under the Series.str attribute.
|
Vertically concat the values in the Series to a single string value. |
|
Check if strings in Series contain a substring that matches a regex. |
|
Count all successive non-overlapping regex matches. |
|
Decode a value using the provided encoding. |
|
Encode a value 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. |
|
Parse string values as JSON. |
|
Extract the first match of json string with provided JSONPath expression. |
Get length of the string values in the Series (as number of bytes). |
|
|
Return the string left justified in a string of length |
|
Remove leading characters. |
Get length of the string values in the Series (as number of chars). |
|
|
Replace first matching regex/literal substring with a new string value. |
|
Replace all matching regex/literal substrings with a new string value. |
|
Return the string right justified in a string of length |
|
Remove trailing characters. |
|
Create subslices of the string values of a Utf8 Series. |
|
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. |
|
Convert a Utf8 column into a Date/Datetime/Time column. |
|
Convert a Utf8 column into a Date column. |
|
Convert a Utf8 column into a Datetime column. |
|
Convert a Utf8 column into a Decimal column. |
Modify the strings to their lowercase equivalent. |
|
|
Convert a Utf8 column into a Time column. |
Modify the strings to their titlecase equivalent. |
|
Modify the strings to their uppercase equivalent. |
|
|
Fills the string with zeroes. |
|
Parse integers with base radix from strings. |