diff --git a/pandas/core/strings.py b/pandas/core/strings.py index 6349af4d2e0ac..8317473a99f67 100644 --- a/pandas/core/strings.py +++ b/pandas/core/strings.py @@ -293,6 +293,8 @@ def str_contains(arr, pat, case=True, flags=0, na=np.nan, regex=True): See Also -------- match : analogous, but stricter, relying on re.match instead of re.search + Series.str.startswith : Test if the start of each string element matches a pattern. + Series.str.endswith : Same as startswith, but tests the end of string. Examples --------