bigframes.pandas.api.typing.StringMethods — bigframes documentation
Vectorized string functions for Series and Index.
NAs stay NA unless handled otherwise by a particular method. Patterned after Python’s string methods, with some inspiration from R’s stringr package.
|
|
Convert strings in the Series/Index to be capitalized. |
|
|
Concatenate strings in the Series/Index with given separator. |
|
Pad left and right side of strings in the Series/Index. |
|
Test if pattern or regex is contained within a string of a Series or Index. |
|
Test if the end of each string element matches a pattern. |
|
Extract capture groups in the regex pat as columns in a DataFrame. |
|
Return lowest indexes in each strings in the Series/Index. |
|
Determine if each string entirely matches a regular expression. |
|
Extract element from each component at specified position or with specified key. |
|
Check whether all characters in each string are alphanumeric. |
|
Check whether all characters in each string are alphabetic. |
Check whether all characters in each string are decimal. |
|
|
Check whether all characters in each string are digits. |
|
Check whether all characters in each string are lowercase. |
Check whether all characters in each string are numeric. |
|
|
Check whether all characters in each string are whitespace. |
|
Check whether all characters in each string are uppercase. |
|
Join lists contained as elements in the Series/Index with passed delimiter. |
|
Compute the length of each element in the Series/Index. |
|
Pad right side of strings in the Series/Index up to width. |
|
Convert strings in the Series/Index to lowercase. |
|
Remove leading characters. |
|
Determine if each string starts with a match of a regular expression. |
|
Pad strings in the Series/Index up to width. |
|
Duplicate each string in the Series or Index. |
|
Replace each occurrence of pattern/regex in the Series/Index. |
|
Reverse strings in the Series. |
|
Pad left side of strings in the Series/Index up to width. |
|
Remove trailing characters. |
|
Slice substrings from each element in the Series or Index. |
|
Split strings around given separator/delimiter. |
|
Test if the start of each string element matches a pattern. |
|
Remove leading and trailing characters. |
|
Create a BigFrames Blob series from a series of URIs. |
|
Convert strings in the Series/Index to uppercase. |
|
Pad strings in the Series/Index by prepending '0' characters. |