G
Guest
The rowExpression documentation states
--------------- begin copy -----------
A wildcard is allowed at the beginning and end of a pattern, or
at the end of a pattern, or at the beginning of a pattern. For example:
"ItemName LIKE '*product*'"
"ItemName LIKE '*product'"
"ItemName LIKE 'product*'"
Wildcards are not allowed in the middle of a string. For example, 'te*xt' is
not allowed.
(...)
--------------- end copy -----------
But I do need to find "TE?XT" and "TE*XT". Cna nayone suggest what I can do
- even if I search row by row - how can I match a string on a wildcard?
Thanks
--------------- begin copy -----------
A wildcard is allowed at the beginning and end of a pattern, or
at the end of a pattern, or at the beginning of a pattern. For example:
"ItemName LIKE '*product*'"
"ItemName LIKE '*product'"
"ItemName LIKE 'product*'"
Wildcards are not allowed in the middle of a string. For example, 'te*xt' is
not allowed.
(...)
--------------- end copy -----------
But I do need to find "TE?XT" and "TE*XT". Cna nayone suggest what I can do
- even if I search row by row - how can I match a string on a wildcard?
Thanks