Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
436 views

Why doesn't the .* consume the entire string in this Perl regex?

Why doesn't the first print statement output what I expect: first = This is a test string, sec = This is a test string Since both * and + are greedy, why does the the inner * i.e. inside the "((" ...
5
votes
1answer
178 views

perlre length limit

From man perlre: The "*" quantifier is equivalent to "{0,}", the "+" quantifier to "{1,}", and the "?" quantifier to "{0,1}". n and m are limited to integral values less than a preset limit ...
3
votes
2answers
2k views

Perl - get first “word” from input string

I am trying to write a Perl program that reads in lines from a text file, and, for each line, extract the first "word" from the line, and perform a different action based on the string that gets ...
2
votes
3answers
77 views

Apply regexp replace only to quoted piece

I need to apply a regexp filtration to affect only pieces of text within quotes and I'm baffled. $in = 'ab c "d e f" g h "i j" k l'; #...? $inquotes =~ s/\s+/_/g; #arbitrary regexp working ...
1
vote
5answers
142 views

How can I rewrite URLs except those of a particular domain?

Can you please help me to make perl regexp to replace (http://.+) to http://www.my1.com/redir?$1 but do nothing for urls like http://www.my1.com/ or http://my1.com/ For instance I need to replace ...