Skip to content

String does not end with

Input
value
Validate that value does not end with 'ZZZ'
validation:
stringDoesNotEndWith

Ensure string field does not end with specified suffix

source:value
parameters
suffix

Suffix that the field must not end with

Output
result
Pass
Pass
Pass
String field "value" ends with unwanted suffix "ZZZ"
String field "value" ends with unwanted suffix "ZZZ"
String field "value" ends with unwanted suffix "ZZZ"

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 does not end with specified suffix.

Parameters

  • suffix (Suffix, string, optional) — Suffix that the field must not end with. Default: "".

Field selection

  • source — Field whose values this operation reads. Use a single field name, a comma-separated list of plain field paths (cash_flow_type, currency) from the multi-select UI, or a regex via Pattern mode. Omit to apply to all fields on the row.
  • target — Optional output field. When omitted, the source field is updated in place. Hidden when more than one named source field is selected.

JSON Configuration

{
"id": "op-stringDoesNotEndWith",
"type": "validation",
"action": "stringDoesNotEndWith",
"params": {
"suffix": "ZZZ"
},
"testInputs": [
"hello world",
"ends cleanly",
"no banned suffix",
"valueZZZ",
"textZZZ",
"rowZZZ"
]
}