Question
How to use regular expression in queryspec search condition.
I have requirement to search object using queryspec which can have number with leading zero(to make it 8 digit length) or without leading zeros.
e.g. I am to search object number 66, query should be able to find object 66, 066, 0066 etc. I got regular expression to search( ^0*66$ ) need to know how to use in queryspec.

