maxframe.dataframe.Series.str.startswith#
- Series.str.startswith(pat: str | tuple[str, ...], na: Scalar | None = None) Series | Index#
Test if the start of each string element matches a pattern.
Equivalent to
str.startswith().- Parameters:
- Returns:
A Series of booleans indicating whether the given pattern matches the start of each string element.
- Return type:
See also
str.startswithPython standard library string method.
Series.str.endswithSame as startswith, but tests the end of string.
Series.str.containsTests if string element contains a pattern.
Examples
>>> import maxframe.tensor as mt >>> import maxframe.dataframe as md >>> s = md.Series(['bat', 'Bear', 'cat', mt.nan]) >>> s.execute() 0 bat 1 Bear 2 cat 3 NaN dtype: object
>>> s.str.startswith('b').execute() 0 True 1 False 2 False 3 NaN dtype: object
>>> s.str.startswith(('b', 'B')).execute() 0 True 1 True 2 False 3 NaN dtype: object
Specifying na to be False instead of NaN.
>>> s.str.startswith('b', na=False).execute() 0 True 1 False 2 False 3 False dtype: bool