hi,
I want to search cards with at least, for example, three numbers. I tried
\D+\d+\D+\d+\D+\d+
It looks ugly, anyone can provide me a better writing?
thx!!!
hi,
I want to search cards with at least, for example, three numbers. I tried
\D+\d+\D+\d+\D+\d+
It looks ugly, anyone can provide me a better writing?
thx!!!
I believe "re:(.*\d.*){3,}"
should do what you want.
thanks, helped a lot.
I had tried this but without quotation mark, and an invalid search dialog shows.