Column.ends_with
ends_withothercase_sensitivity
Group: Text
Documentation
Checks for each element of the column if it ends with other.
Arguments
- other: The value to compare- selfwith. If- otheris a column, the operation is performed pairwise between corresponding elements of- selfand- other.
- case_sensitivity: Specifies if the text values should be compared case sensitively.
Examples
Check the elements of a column for ending with the elements of another
column.
      import Standard.Examples
      example_ends_with =
         Examples.text_column_1.ends_with Examples.text_column_2
Check the elements of a column for ending with a value.
      import Standard.Examples
      example_ends_with = Examples.text_column_1.ends_with "hell"