in reply to Re: regex problem (again)
in thread regex problem (again)
This is working!$input = "xxxx aaaa bbbbb"; ($txt) = $input =~ /\s{5}(.+)(?{length($input);})/; chomp; print $txt;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: regex problem (again)
by JavaFan (Canon) on Apr 30, 2012 at 15:11 UTC |