is alphanumeric
This block is part of the condition group and was last modified in core v14.0.3.
is alphanumeric v12.0.1 Updated v14.0.3Validates that a value contains only alphanumeric characters, underscores, spaces, and asterisks
- value required
valueThe value to be checked for special characters
- disallow space
v14.0.3conditionDo not accept spaces
- Valid
conditionReturns
trueif the value contains no special characters (only letters, numbers, underscores, spaces, and asterisks)
Outputs valid=true when every character of value is an ASCII letter, digit, underscore, or asterisk - plus space unless disallow_space is true. Underscore IS allowed despite the label; accented letters and all other punctuation yield false. An empty or missing value has no offending characters and is true.
special characters |
A typical wiring for is alphanumeric: substring feeds the value pin; the valid out pin feeds AND.
Commonly used with
In production blueprints, this block is most often wired together with:
- AND: this block feeds into it. operator for a set of boolean operands will be true if and only if all the operands are true.
- substring: feeds into this block.
Version history
Introduced in v12.0.1.
Last modified in v14.0.3.
Back to
condition Return to the main group to view all sub-groups Back to condition Return to the group to view all blocks within this group 