bigframes.pandas.api.typing.StringMethods.isalpha#
- StringMethods.isalpha() T[source]#
Check whether all characters in each string are alphabetic.
This is equivalent to running the Python string method
str.isalpha()for each element of the Series/Index. If a string has zero characters,Falseis returned for that check.Examples:
>>> import bigframes.pandas as bpd
>>> s1 = bpd.Series(['one', 'one1', '1', '']) >>> s1.str.isalpha() 0 True 1 False 2 False 3 False dtype: boolean
- Returns:
Series with the same length as the originalSeries/Index.
- Return type: