bigframes.pandas.api.typing.StringMethods.get#

StringMethods.get(i:int)T[source]#

Extract element from each component at specified position or with specified key.

Extract element from lists, tuples, dict, or strings in each element in theSeries/Index.

Examples:

>>>importbigframes.pandasasbpd
>>>s=bpd.Series(["apple","banana","fig"])>>>s.str.get(3)0       l1       a2    <NA>dtype: string
Parameters:

i (int) – Position or key of element to extract.

Returns:

Series

Return type:

bigframes.series.Series

On this page

This Page