1 package Text
::ParseWords
;
3 use vars
qw($VERSION @ISA @EXPORT $PERL_SINGLE_QUOTE);
10 @EXPORT = qw(shellwords quotewords nested_quotewords parse_line);
11 @EXPORT_OK = qw(old_shellwords);
16 $lines[$#lines] =~ s/\s+$//;
17 return(quotewords
('\s+', 0, @lines));
23 my($delim, $keep, @lines) = @_;
24 my($line, @words, @allwords);
27 foreach $line (@lines) {
28 @words = parse_line
($delim, $keep, $line);
29 return() unless (@words || !length($line));
30 push(@allwords, @words);
37 sub nested_quotewords
{
38 my($delim, $keep, @lines) = @_;
41 for ($i = 0; $i < @lines; $i++) {
42 @
{$allwords[$i]} = parse_line
($delim, $keep, $lines[$i]);
43 return() unless (@
{$allwords[$i]} || !length($lines[$i]));
51 # We will be testing undef strings
54 my($delimiter, $keep, $line) = @_;
55 my($quote, $quoted, $unquoted, $delim, $word, @pieces);
57 while (length($line)) {
59 ($quote, $quoted, undef, $unquoted, $delim, undef) =
60 $line =~ m
/^(["']) # a $quote
61 ((?:\\.|(?!\1)[^\\])*) # and $quoted text
62 \1 # followed by the same quote
63 ([\000-\377]*) # and the rest
65 ^((?:\\.|[^\\"'])*?) # an $unquoted text
66 (\Z(?!\n)|(?-x:$delimiter)|(?!^)(?=["']))
67 # plus EOL, delimiter, or quote
68 ([\000-\377]*) # the rest
70 return() unless( $quote || length($unquoted) || length($delim));
75 $quoted = "$quote$quoted$quote";
78 $unquoted =~ s/\\(.)/$1/g;
80 $quoted =~ s/\\(.)/$1/g if ($quote eq '"');
81 $quoted =~ s/\\([\\'])/$1/g if ( $PERL_SINGLE_QUOTE && $quote eq "'");
84 $word .= defined $quote ?
$quoted : $unquoted;
88 push(@pieces, $delim) if ($keep eq 'delimiters');
104 # @words = old_shellwords($line);
106 # @words = old_shellwords(@lines);
108 local($_) = join('', @_);
109 my(@words,$snippet,$field);
115 if (s/^"(([^"\\]|\\.)*)"//) {
116 ($snippet = $1) =~ s
#\\(.)#$1#g;
121 elsif (s/^'(([^'\\]|\\.)*)'//) {
122 ($snippet = $1) =~ s
#\\(.)#$1#g;
130 elsif (s/^([^\s\\'"]+)//) {
139 push(@words, $field);
150 Text::ParseWords - parse text into an array of tokens or array of arrays
154 use Text::ParseWords;
155 @lists = &nested_quotewords($delim, $keep, @lines);
156 @words = "ewords($delim, $keep, @lines);
157 @words = &shellwords(@lines);
158 @words = &parse_line($delim, $keep, $line);
159 @words = &old_shellwords(@lines); # DEPRECATED!
163 The &nested_quotewords() and "ewords() functions accept a delimiter
164 (which can be a regular expression)
165 and a list of lines and then breaks those lines up into a list of
166 words ignoring delimiters that appear inside quotes. "ewords()
167 returns all of the tokens in a single long list, while &nested_quotewords()
168 returns a list of token lists corresponding to the elements of @lines.
169 &parse_line() does tokenizing on a single string. The &*quotewords()
170 functions simply call &parse_lines(), so if you're only splitting
171 one line you can call &parse_lines() directly and save a function
174 The $keep argument is a boolean flag. If true, then the tokens are
175 split on the specified delimiter, but all other characters (quotes,
176 backslashes, etc.) are kept in the tokens. If $keep is false then the
177 &*quotewords() functions remove all quotes and backslashes that are
178 not themselves backslash-escaped or inside of single quotes (i.e.,
179 "ewords() tries to interpret these characters just like the Bourne
180 shell). NB: these semantics are significantly different from the
181 original version of this module shipped with Perl 5.000 through 5.004.
182 As an additional feature, $keep may be the keyword "delimiters" which
183 causes the functions to preserve the delimiters in each string as
184 tokens in the token lists, in addition to preserving quote and
185 backslash characters.
187 &shellwords() is written as a special case of "ewords(), and it
188 does token parsing with whitespace as a delimiter-- similar to most
195 use Text::ParseWords;
196 @words = "ewords('\s+', 0, q{this is "a test" of\ quotewords \"for you});
222 multiple spaces are skipped because of our $delim
226 use of quotes to include a space in a word
230 use of a backslash to include a space in a word
234 use of a backslash to remove the special meaning of a double-quote
238 another simple word (note the lack of effect of the
239 backslashed double-quote)
243 Replacing C<"ewords('\s+', 0, q{this is...})>
244 with C<&shellwords(q{this is...})>
245 is a simpler way to accomplish the same thing.
249 Maintainer is Hal Pomeranz <pomeranz@netcom.com>, 1994-1997 (Original
250 author unknown). Much of the code for &parse_line() (including the
251 primary regexp) from Joerk Behrends <jbehrends@multimediaproduzenten.de>.
253 Examples section another documentation provided by John Heidemann
256 Bug reports, patches, and nagging provided by lots of folks-- thanks
257 everybody! Special thanks to Michael Schwern <schwern@envirolink.org>
258 for assuring me that a &nested_quotewords() would be useful, and to
259 Jeff Friedl <jfriedl@yahoo-inc.com> for telling me not to worry about
260 error-checking (sort of-- you had to be there).