Is there a way to filter for "field not empty" by using some sort of wild card that means any character? Thanks.
Anonymous
You seem to have CSS turned off. Please don't fill out this field.
looks like no; I will update program
You can use a regular expression check of:
.*[^-\s].*
see atached picture:
Thanks. Very Strange but I'll try it. What does it mean?
Google Regular Expressions or look at info.
The expression
Basically
.
*
So is .* is any character string (0 or more characters
.*
[^-\s] means any character that is not white space (space tab).
[^-\s]
So .*[^-\s].* is
Is there a way to filter for "field not empty" by using some sort of wild card that means any character?
Thanks.
looks like no; I will update program
You can use a regular expression check of:
.*[^-\s].*
see atached picture:
Last edit: Bruce Martin 2020-10-10
Thanks. Very Strange but I'll try it. What does it mean?
Google Regular Expressions or look at info.
The expression
Basically
.
- any character.*
- any number of repeats of the preceding characterSo is
.*
is any character string (0 or more characters[^-\s]
means any character that is not white space (space tab).So
.*[^-\s].*
is