in reply to Re: Re: simple regex question
in thread simple regex question

A more general solution might be /^1\b/.

...or, borrowing from Tuna below: /^1\D/.

p