in reply to Re: Re: Not quite a simple split
in thread Not quite a simple split
This probably runs better.@parts = $string =~ m{ ( (?: [^\s"]+ # one or more non-quote/whitespace | " [^"]* " # a quoted part )+ # one or more times ) }xg;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Not quite a simple split
by John M. Dlugosz (Monsignor) on Feb 02, 2004 at 16:25 UTC | |
by japhy (Canon) on Feb 02, 2004 at 19:16 UTC | |
|
Re^4: Not quite a simple split
by Roy Johnson (Monsignor) on Feb 02, 2004 at 19:52 UTC |