Quote:
Originally Posted by macropod
The behaviour is by design - each '?' represent exactly one character, but the '*' represents any number of characters. The question is why are you using such a construction to test whether a field is empty, when that should be done with code like:
Field is {IF{REF textFormFieldName}<> " " "not "}empty
A field that contains at least six characters cannot be empty...
|
Easy, because:
{IF{REF textFormFieldName}<> "" "not "}
...not working. That is the origin of this thread. This trick was useful in my case.