Skip to main content

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 match self against. If it is a column, the operation is performed pairwise between corresponding elements of self and 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")