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. 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-stringDoesNotEndWith", "type": "validation", "action": "stringDoesNotEndWith", "params": { "suffix": "ZZZ" }, "testInputs": [ "hello world", "ends cleanly", "no banned suffix", "valueZZZ", "textZZZ", "rowZZZ" ]}