Hi,
I'm trying to get partial match for fields of type integer, much like how %= and *= selectors works for string. Unfortunately these selectors are not working with numeric fields. Is it possible to do this?
For example, if I have pages with control numbers 14975, 91432, 33333, 32414, 13256
I'm looking for something like:
$pages->find("controlnumber%=14");
that would match 14975, 91432, and 32414, that would work for numeric fields.
Thanks.