bigframes.pandas.api.typing.StringMethods.reverse#
- StringMethods.reverse() T[source]#
Reverse strings in the Series.
Examples:
>>> import bigframes.pandas as bpd >>> s = bpd.Series(["apple", "banana", "", pd.NA]) >>> s.str.reverse() 0 elppa 1 ananab 2 3 <NA> dtype: string
- Returns:
- A Series of booleans indicating whether the given
pattern matches the start of each string element.
- Return type: