Skip to content

String ends with

Input
value
Validate that value ends with 'WORLD'
validation:
stringEndsWith

Ensure string field ends with specified suffix

source:value
parameters
suffix

Suffix that the field must end with

Output
result
Pass
Pass
Pass
String field "value" does not end with "WORLD"
String field "value" does not end with "WORLD"
String field "value" does not end with "WORLD"

Sample inputs run locally in your browser using the same operation logic as Fontana Flow.
Results are illustrative, not connected to a workflow.

Ensure string field ends with specified suffix.

Parameters

  • suffix (string, optional) — Suffix that the field must end with. Examples: ".com", "@example.com", "-active".

Field selection

  • source — Field whose values this operation reads. Omit to apply to all fields on the row.
  • target — Optional output field. When omitted, the source field is updated in place.

JSON Configuration

{
"id": "op-stringEndsWith",
"type": "validation",
"action": "stringEndsWith",
"params": {
"suffix": "WORLD"
},
"testInputs": [
"HELLO WORLD",
"value WORLD",
"end WORLD",
"HELLO",
"world",
"suffix missing"
]
}