You are not logged in.
Hello,
I was trying to create a new form when I noticed the regex engine can't match the ampersand character.
The following regex does not work when trying to match "&" alone :
/^&$/
The workaround I found was to use the character range (square brackets) around the ampersand:
/^[&]$/
Best regards,
Offline