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

A more general solution might be /^1\b/. Of course, the previous suggestion will almost certainly work also, but in the spirit of TIMTOWTDI, and not fully knowing the format of the data..

 
perl -e 'print "I love $^X$\"$]!$/"#$&V"+@( NO CARRIER'

Replies are listed 'Best First'.
Re: Re: Re: simple regex question
by petral (Curate) on Mar 03, 2001 at 08:13 UTC
    A more general solution might be /^1\b/.

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

    p
Re: Re: Re: simple regex question
by beowulf (Scribe) on Mar 03, 2001 at 07:49 UTC
    I was thinking about that too, actually
    Life? What's a life?