- Issue created by @DamienMcKenna
- πΊπΈUnited States DamienMcKenna NH, USA
FWIW I ended up building the logic I needed via a custom validator.
Using a regex with a space in it causes problems.
Create a Regex validation that looks for the word "and": /(.*) and (.*)/
Submit a string that contains the letters "and", e.g. the name "Alexander".
What should happen:
The string is ignored and does not trigger a validation failure.
What actually happens:
The string fails validation.
Fix the bug.
Work out the cause of the bug.
Regex validation works as expected.
TBD
TBD
Active
3.0
User interface
FWIW I ended up building the logic I needed via a custom validator.