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 | |
by Kenosis (Priest) on Aug 29, 2012 at 18:14 UTC |