pandas.Series.str.match¶
- 
Series.str.match(pat, case=True, flags=0, na=nan, as_indexer=None)[source]¶
- Determine if each string matches a regular expression. - Parameters: - pat : string - Character sequence or regular expression - case : boolean, default True - If True, case sensitive - flags : int, default 0 (no flags) - re module flags, e.g. re.IGNORECASE - na : default NaN, fill value for missing values. - as_indexer : DEPRECATED - Keyword is ignored. - Returns: - Series/array of boolean values