Skip to content

Starts with¤

Returns success if the first string starts with the second string, failure otherwise.

Characteristics¤

This is a boolean distance measure, i.e., all distances are either 0 or 1.

Compares single values (as opposed to sequences of values). If multiple values are provided, all values are compared and the lowest distance is returned.

Parameter¤

Reverse¤

Reverse source and target values

  • Datatype: boolean
  • Default Value: false

Min length¤

The minimum length of the string being contained.

  • Datatype: int
  • Default Value: 2

Max length¤

The potential maximum length of the strings that must match. If the max length is greater than the length of the string to match, the full string must match.

  • Datatype: int
  • Default Value: 2147483647

Comments