in reply to Re: How can I read and print lines that has only one word from a file
in thread How can I read and print lines that has only one word from a file

Yes I have a question. Does /^(\w+)$/ mean that lines that start with one word or contain one word?
  • Comment on Re: Re: How can I read and print lines that has only one word from a file

Replies are listed 'Best First'.
Re^3: How can I read and print lines that has only one word from a file
by tadman (Prior) on Jul 15, 2002 at 04:43 UTC
    It means, literally, "start of line(^), followed by one-or-more word-characters(\w+), followed by end of line($)". This is one possible definition of "one word on line".