in reply to Re: 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

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".
  • Comment on Re^3: How can I read and print lines that has only one word from a file