bigframes.pandas.Series.str#
- propertySeries.str:strings.StringMethods#
Vectorized string functions for Series and Index.
NAs stay NA unless handled otherwise by a particular method. Patternedafter Python’s string methods, with some inspiration from R’s stringr package.
Examples:
>>>importbigframes.pandasasbpd>>>s=bpd.Series(["A_Str_Series"])>>>s0 A_Str_Seriesdtype: string
>>>s.str.lower()0 a_str_seriesdtype: string
>>>s.str.replace("_","")0 AStrSeriesdtype: string
- Returns:
An accessor containing string methods.
- Return type:
bigframes.operations.strings.StringMethods
On this page