in reply to Smoothing text input

You could use Text::ParseWords:

use Modern::Perl; use Text::ParseWords; say for shellwords 'This is just an average looking string.';

Output:

This is just an average looking string.

Replies are listed 'Best First'.
Re^2: Smoothing text input
by Anonymous Monk on Aug 29, 2012 at 17:42 UTC

    Thanks! I found Text::ParseWords just after the initial post

      You're most welcome! It's a good find...