modin.pandas.Series.str.endswith¶
- Series.str.endswith(pat, na=_NoDefault.no_default)[source]¶
Test if the end of each string element matches a pattern.
- Parameters:
pat (str or tuple[str, …]) – Character sequence or tuple of strings. Regular expressions are not accepted.
na (object, default NaN) – Object shown if element tested is not a string. The default depends on dtype of the array. For object-dtype, numpy.nan is used. For StringDtype, pandas.NA is used.
- Returns:
A Series of booleans indicating whether the given pattern matches the end of each string element.
- Return type:
Series or Index of bool
See also
str.endswithPython standard library string method.
Series.str.startswithSame as endswith, but tests the start of string.
Series.str.containsTests if string element contains a pattern.
Examples
Specifying na to be False instead of NaN.