bigframes.pandas.api.typing.StringMethods.fullmatch#
- StringMethods.fullmatch(pat, case=True, flags=0) T[source]#
Determine if each string entirely matches a regular expression.
Examples:
>>> import bigframes.pandas as bpd
>>> ser = bpd.Series(["cat", "duck", "dove"]) >>> ser.str.fullmatch(r'd.+') 0 False 1 True 2 True dtype: boolean
- Parameters:
- Returns:
Series of boolean values
- Return type: