in reply to Regular Expressions Matching with Perl
$filename = (split( /\s+/,$line, 8 ))[-1]
$filename = (split( ' ',$line, 8 ))[-1]
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Regular Expressions Matching with Perl
by ikegami (Patriarch) on Apr 20, 2005 at 17:42 UTC | |
|
Re^2: Regular Expressions Matching with Perl
by nimdokk (Vicar) on Apr 20, 2005 at 17:49 UTC | |
|
Re^2: Regular Expressions Matching with Perl
by nimdokk (Vicar) on Apr 20, 2005 at 17:41 UTC |