http://qs321.pair.com?node_id=596827

greatdane has asked for the wisdom of the Perl Monks concerning the following question:

Dear PerlGods, Any idea how I can get quotewords of Text::ParseWords to split inputs quoted with qq{} or q{}. Users of my program want/need to give me input with qq{} instead of standard quotes because long_story.
use Text::ParseWords; @list = &quotewords ('\s+', 0, $input); foreach $item (@list) { <whatever>; }