Contributed by Adam
on Aug 24, 2000 at 21:09 UTC
Q&A
> regular expressions
Description: my $string = "first-item \"second item\" third-item";
my @items = split /???/, $string;
my $i = 0;
print ++$i, ": $_\n" for @items;
# Would print:
# 1: first-item
# 2: "second item"
# 3: third-item
Answer: How can I split on a string except when inside quotes? contributed by merlyn use Text::ParseWords | Answer: How can I split on a string except when inside quotes? contributed by Anonymous Monk This doesn't handle all the subtle things (backslashes, single-quotes, etc) that Text::ParseWords does, but it works for the simple cases, and produces your expected output exactly (quotes intact):
my @items = ($string =~ /(".*?"|\S+)/g); | Answer: How can I split on a string except when inside quotes? contributed by Coruscate
Late entry: how about something like this:
my $string = 'first-item "second item" ' .
'third-item "fourth item"';
my %items;
push @{$items{
$1 =~ /"/ ? 'quoted' : 'unquoted'
}}, $1 while $string =~ /(".*?"|\S+)/g;
print 'Quoted: ',
join(', ', @{$items{'quoted'}}),
"\n";
print 'Unquoted: ',
join(', ', @{$items{'unquoted'}}),
"\n";
|
Please (register and) log in if you wish to add an answer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|