| [ Web Proxy ] |
| Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.pandas.Index.str.html | [Back] [Original] |
Section Navigation
Vectorized string functions for Series and Index.
NAs stay NA unless handled otherwise by a particular method. Patterned after Pythons string methods, with some inspiration from Rs stringr package.
Examples:
>>> import bigframes.pandas as bpd
>>> s = bpd.Series(["A_Str_Series"])
>>> s
0 A_Str_Series
dtype: string
>>> s.str.lower()
0 a_str_series
dtype: string
>>> s.str.replace("_", "")
0 AStrSeries
dtype: string
An accessor containing string methods.
Copyright 2019, Google.
Created using Sphinx 8.1.3.
Built with the PyData Sphinx Theme 0.19.0.
| Web Proxy Viewer | New URL | Original Page |