Column.regex_match
regex_matchpattern
Group: Logical
Documentation
Checks for each element of the column if it matches a regular expression.
Arguments
pattern: The pattern to matchselfagainst. If it is a column, the operation is performed pairwise between corresponding elements ofselfand that column.
Examples
Check if elements of a column start with 'A' and end with a 'M'.
import Standard.Examples
example_contains = Examples.text_column_1.regex_match (regex "A.*M")