http://www.perlmonks.org?node_id=1007066


in reply to Re: extracting words with certain characters
in thread extracting words with certain characters

In progress...

perl -ne '/([A-Za-z_]+)/ && print "$1\n";' code_file(s)

Just had to be first, didn't we? :-)

Replies are listed 'Best First'.
Re^3: extracting words with certain characters
by space_monk (Chaplain) on Dec 04, 2012 at 11:59 UTC
    Not really ; its a slow work day and I was bored, so I kept changing the answer.... :-P
    A Monk aims to give answers to those who have none, and to learn from those who know more.