Regex search for cards with numbers

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.

3 Likes

thanks, helped a lot.

I had tried this but without quotation mark, and an invalid search dialog shows.