How to match regular expression for lines without number?

regex

Solution

^[^\d]*$

Select anything but digits.

Problem

I've multiple lines text, and want to match only lines without numbers: ``` text without numbers text 1 with number some other text text without numbers text 1 with number text without numbers text 1 with number ``` I'm out of luck. any suggestion appreciated.

Original source