User mirod - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:04:01Zhttp://stackoverflow.com/feeds/user/11095http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1889780/intelligent-regex-in-perl/1892761#18927613Answer by mirod for Intelligent RegEx in Perl?mirod2009-12-12T08:22:18Z2009-12-12T22:28:56Z<p>Time for a lecture I guess ;--)</p>
<p>I am not sure why you think using a full-blown XML processor is overkill. It is actually easier to write the code using the proper tool. A regexp will be more complex and will rely on unwritten assumptions about the data, which is dangerous. Some of those assumptions are likely to be: no '>' in attribute values, no CDATA sections, no non-ascii characters in tag or attribute names, consistent attribute value quoting... </p>
<p>The only thing a regexp will give you is the assurance that the output keeps the original format of the data (in your case the fact that the attributes are each on a separate line). But if your format is consistent that can be done, and if not it should not matter, unless you keep you XML in a line-oriented revision control system.</p>
<p>Here is an example with XML::Twig. It assumes you have enough memory to keep any entire <code>Foo</code> element in memory, and it works even on the admittedly contrived bit of XML in the DATA section. It would probably be just as easy to do with XML::LibXML (read the XML in memory, select all <code>Foo</code> elements, add attribute to each of them, output, that's 5 easy to understand lines by my count). </p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use XML::Twig;
my( $tag, $att, $val)= ( 'Foo', 'CustomAttribute', 'TRUE');
XML::Twig->new( # only process those elements
twig_roots => { $tag => sub {
# add/set attribute
$_->set_att( $att => $val);
# output and free memory
$_->flush;
}
},
twig_print_outside_roots => 1, # output everything else
pretty_print => 'cvs', # seems to be the right format
)
->parse( \*DATA) # use parsefile( $file) if parsing... a file
->flush; # not needed in XML::Twig 3.33
__DATA__
<doc>
<Foo
Bar="bar"
Baz="1"
Bax="bax"
>
here is some text
</Foo>
<Foo CustomAttribute="TRUE"><Foo no_att="1"/></Foo>
<bar><![CDATA[<Foo no_att="1">tricked?</Foo>]]></bar>
<Foo><![CDATA[<Foo no_att="1" CustomAttribute="TRUE">tricked?</Foo>]]></Foo>
<Foo
Bar=">"
Baz="1"
Bax="bax"
></Foo>
<Foo
Bar="
>"
Baz="1"
Bax="bax"
></Foo>
<Foo
Bar=">"
Baz="1"
Bax="bax"
CustomAttribute="TRUE"
></Foo>
<Foo
Bar="
>"
Baz="1"
Bax="b
ax"
CustomAttribute="TR
UE"
></Foo>
</doc>
</code></pre>
http://stackoverflow.com/questions/1877108/select-value-with-linux-command-xpath-from-perl/1877511#18775110Answer by mirod for Select value with Linux command xpath (from Perl)mirod2009-12-09T22:58:34Z2009-12-09T22:58:34Z<p>I use (maybe because I wrote it ;--) <code>xml_grep2</code>, from <a href="http://search.cpan.org/dist/App-xml%5Fgrep2" rel="nofollow">App::xml_grep2</a>, which has a convenient <code>-t</code> option that returns the text value of the result: </p>
<pre><code>virsh dumpxml save | xml_grep2 -t "/domain/devices/disk[@type='file']/source/@file[1]"
</code></pre>
<p>should work</p>
http://stackoverflow.com/questions/1838745/how-should-i-parse-large-xml-files-in-perl/1839208#18392085Answer by mirod for How should I parse large XML files in Perl?mirod2009-12-03T10:58:11Z2009-12-03T10:58:11Z<p>For large XML files, you can either use XML::LibXML, in DOM mode if the document fits in memory, or using the pull mode (see <a href="http://search.cpan.org/~pajas/XML-LibXML-1.70/lib/XML/LibXML/Reader.pod" rel="nofollow">XML::LibXML::Reader</a>) or <a href="http://search.cpan.org/dist/XML-Twig" rel="nofollow">XML::Twig</a> (which I wrote, so I'm biased, but it works generally well for files that are too big to fit in memory). </p>
<p>I am not a fan of SAX, which is hard to use and in fact quite slow.</p>
http://stackoverflow.com/questions/1704163/string-corruption-and-nonprintable-characters-using-xmltwig-in-win32-perl/1709964#17099640Answer by mirod for String corruption and nonprintable characters using XML::Twig in Win32 Perlmirod2009-11-10T18:03:57Z2009-11-10T18:03:57Z<p>I can't really make sense of your code, it is still too complex to be quickly debugged, but maybe the problem has to do with a BOM (see the <a href="http://www.unicode.org/unicode/faq/utf%5Fbom.html#BOM" rel="nofollow">Unicode BOM FAQ</a>) that would be ignored at the beginning of an XML document, but not if you copy it in the middle of an other one? just guessing here because of the xBF value, that's part of the BOM for a UTF-8 document. </p>
http://stackoverflow.com/questions/1692362/how-can-i-find-the-contents-of-a-div-using-perls-html-modules-if-i-know-a-tag-i/1692439#16924392Answer by mirod for How can I find the contents of a div using Perl's HTML modules, if I know a tag inside of it?mirod2009-11-07T08:35:30Z2009-11-07T08:35:30Z<p>You could use (yet another module!) <a href="http://search.cpan.org/dist/HTML-TreeBuilder-XPath" rel="nofollow">HTML::TreeBuilder::XPath</a>, which, as per its name, will let you use XPath on HTML::TreeBuilder objects.</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use HTML::TreeBuilder::XPath;
my $root = HTML::TreeBuilder::XPath->new_from_file( "my.html");
# print $root->as_HTML; # useful to see how HTML::TreeBuilder
# understands your HTML. For example it will wrap the implied
# dl element around dt, which you need to take into account
# when writing the XPath query below
my $id= "a1";
# you need the .//dt because of the extra dl
my @divs= $root->findnodes( qq{//div[.//dt[\@id="$id"]]});
print $divs[0]->as_HTML; # or as_text
</code></pre>
http://stackoverflow.com/questions/569772/how-do-i-read-two-items-at-a-time-in-a-perl-foreach-loop/569839#56983921Answer by mirod for How do I read two items at a time in a Perl foreach loop?mirod2009-02-20T14:57:50Z2009-10-23T14:08:59Z<p>I believe the proper way to do this is to use natatime, from List::MoreUtils:</p>
<p>from the docs:</p>
<blockquote>
<p>natatime BLOCK LIST</p>
<p>Creates an array iterator, for looping over an array in chunks of <code>$n</code> items
at a time. (<code>n</code> at a time, get it?). An example is probably a better
explanation than I could give in words.</p>
</blockquote>
<p>Example:</p>
<pre><code> my @x = ('a' .. 'g');
my $it = natatime 3, @x;
while (my @vals = $it->())
{
print "@vals\n";
}
</code></pre>
<p>This prints</p>
<pre>
a b c
d e f
g
</pre>
<p>The implementation of <a href="http://search.cpan.org/perldoc/List%3A%3AMoreUtils" rel="nofollow"><code>List::MoreUtils::natatime</code></a>:</p>
<pre><code>sub natatime ($@)
{
my $n = shift;
my @list = @_;
return sub
{
return splice @list, 0, $n;
}
}
</code></pre>
http://stackoverflow.com/questions/1590504/what-would-be-your-choice-of-perl-xml-parsers-for-files-greater-than-15-gb/1593124#15931243Answer by mirod for What would be your choice of Perl XML Parsers for files greater than 15 GB?mirod2009-10-20T08:11:50Z2009-10-20T08:11:50Z<p>As you would expect I would suggest <a href="http://search.cpan.org/dist/XML-Twig" rel="nofollow">XML::Twig</a>, which will let you process the file chunk-by-chunk. This of course assumes that you can process your file this way. It will probably be easier to use than SAX, as you can process the tree for each chunk with DOM-like methods.</p>
<p>An alternative would be to use the <a href="http://search.cpan.org/~pajas/XML-LibXML-1.70/lib/XML/LibXML/Reader.pod" rel="nofollow">pull parser mode</a>, which is a little similar to what XML::Twig offers.</p>
http://stackoverflow.com/questions/1558625/how-can-i-maintain-the-order-of-keys-i-add-to-a-perl-hash/1558977#155897711Answer by mirod for How can I maintain the order of keys I add to a Perl hash?mirod2009-10-13T08:46:33Z2009-10-13T11:51:13Z<p>Hashes are not ordered, but as usual, CPAN offers a solution: <a href="http://search.cpan.org/dist/Tie-IxHash" rel="nofollow">Tie::IxHash</a></p>
<pre><code>use Tie::IxHash;
my %count;
tie %count, 'Tie::IxHash';
while ($line = <DATA>) {
$count{$line}++ if ( $line =~ /\S/ );
}
while( my( $key, $value)= each %count) {
print "$key\t $value";
}
</code></pre>
http://stackoverflow.com/questions/1531664/in-what-order-do-templates-in-an-xslt-document-execute-and-do-they-match-on-the/1531857#15318570Answer by mirod for In what order do templates in an XSLT document execute, and do they match on the source XML or the buffered output?mirod2009-10-07T14:06:03Z2009-10-07T14:06:03Z<p>Templates <strong>always</strong> match in the source XML. So the order doesn't really matter, unless 2 or more templates match the same node(s). In that case, somewhat counter-intuitively, the rule with the <strong>last</strong> matching template is triggered.</p>
http://stackoverflow.com/questions/1527762/simple-math-syntax-to-mathml-converter/1527814#15278140Answer by mirod for "simple math syntax" to MathML convertermirod2009-10-06T20:07:34Z2009-10-06T20:07:34Z<p>Perl has <a href="http://search.cpan.org/dist/Text-ASCIIMathML" rel="nofollow">Text::ASCIIMathML</a>, which works quite well. </p>
<p>Adapted from the Synopsys section:</p>
<pre><code>#!/usr/bin/perl
use strict;
use warning;
use Text::ASCIIMathML;
my $parser = Text::ASCIIMathML->new;
my $ASCIIMathML = "int_0^1 e^x dx";
print $parser->TextToMathML($ASCIIMathML);
</code></pre>
<p>gives (reformatted for legibility):</p>
<pre><code><math>
<mstyle>
<mrow><msubsup><mo>&#x222B;</mo><mn>0</mn><mn>1</mn></msubsup></mrow>
<msup><mi>e</mi><mi>x</mi></msup>
<mrow><mi>d</mi><mi>x</mi></mrow>
</mstyle>
</math>
</code></pre>
http://stackoverflow.com/questions/1526270/how-do-i-create-a-perl-regular-expression-to-remove-all-characters-before-the-fir/1526316#15263163Answer by mirod for How do I create a Perl regular expression to remove all characters before the first "<"?mirod2009-10-06T15:24:45Z2009-10-06T15:38:32Z<p>The '.' in a character class is not a meta-character. Also you want <code>s///</code>, not <code>tr</code>, which replaces single characters. so <code>s/^.+(?=<)//</code> should work, although personally I would write
<code>s{^.*<}{<}</code>, to avoid the lookahead thingie.</p>
http://stackoverflow.com/questions/1524597/how-can-i-extract-some-xml-data-from-a-url-using-xmltwig/1525719#15257193Answer by mirod for How can I extract some XML data from a URL using XML::Twig?mirod2009-10-06T13:50:12Z2009-10-06T15:31:35Z<p>nparse takes care of the <code>new</code> for you (hence the 'n'), what you want in this case is probably <code>xparse</code>, or just let the module figure it out and do this:</p>
<pre><code>my $url= 'http://192.168.1.205:13000/status.xml';
my $twig= XML::Twig->parse( twig_roots =>
{ 'smsc/received' => sub { $author= $_[1]->text;}},
$url
);
$twig->print; # I am not sure why you print the twig instead of just $author
</code></pre>
http://stackoverflow.com/questions/1523522/converting-xml-input-from-multiple-lines-to-one-line/1524016#15240163Answer by mirod for Converting XML input from multiple lines to one linemirod2009-10-06T07:02:52Z2009-10-06T07:02:52Z<p>[XML::Twig][1] comes with an xml pretty printer xml_pp. If the address lines are right under the root of the document, then you can use it to get real close to your desired output:</p>
<pre><code>xml_pp -s record_c to_compact.xml
<root>
<address><street>abc</street><number>123</number></address>
<address><street>abc1</street><number>345</number></address>
<address><street>xyz</street><number>999</number></address>
<address><street>abc</street><number>123</number></address>
<address><street>abc1</street><number>345</number></address>
<address><street>xyz</street><number>999</number></address>
</root>
</code></pre>
<p>Removing the spaces at the beginning of the address lines is quite easy:</p>
<pre><code>xml_pp -s record_c to_compact.xml | perl -p -e's{^\s+}{}'
</code></pre>
<p>If the address elements are not right under the root, then let us know, and I'll see what can be done.</p>
http://stackoverflow.com/questions/1476290/beginner-regex-multiple-replaces/1476554#14765541Answer by mirod for Beginner Regex: Multiple Replacesmirod2009-09-25T10:27:12Z2009-09-25T16:52:20Z<p>You can do this the quick and dirty way, or the quick and clean way:</p>
<p>In both cases you need a hash <code>word => replacement</code></p>
<p>With the quick and dirty way, you then build the left part of the substitution by joining the keys of the hash with a '|'. In order to deal with overlapping words (eg 'cat' and 'catogan') you need to place the longest option first, by doing a <code>sort reverse</code> on the keys of the hash. You still can't deal with meta-characters in the words to replace (eg 'cat++').</p>
<p>The quick and clean way uses <a href="http://search.cpan.org/dist/Regexp%3A%3AAssemble" rel="nofollow">Regexp::Assemble</a> to build the left part of the regexp. It deals natively with overlapping words, and it is simple to get it to deal with meta-characters in the words to replace.</p>
<p>Once you have the word to replace, you then replace it with the corresponding entry in the hash.</p>
<p>Below is a bit of code that shows the 2 methods, dealing with various cases:</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 6;
use Regexp::Assemble;
my $mystring = "My cat likes to eat tomatoes.";
my $expected = "My dog likes to eat pasta.";
my $repl;
# simple case
$repl= { 'cat' => 'dog', 'tomatoes' => 'pasta', };
is(
repl_simple($mystring, $repl),
$expected,
'look Ma, no module (simple)'
);
my $re= regexp_assemble($repl);
is(
repl_assemble($mystring, $re),
$expected,
'with Regex::Assemble (simple)'
);
# words overlap
$mystring = "My cat (catogan) likes to eat tomatoes.";
$expected = "My dog (doggie) likes to eat pasta.";
$repl= {'cat' => 'dog', 'tomatoes' => 'pasta', 'catogan' => 'doggie', };
is(
repl_simple($mystring, $repl),
$expected,
'no module, words overlap'
);
$re= regexp_assemble( $repl);
is(
repl_assemble($mystring, $re),
$expected,
'with Regex::Assemble, words overlap'
);
# words to replace include meta-characters
$mystring = "My cat (felines++) likes to eat tomatoes.";
$expected = "My dog (wolves--) likes to eat pasta.";
$repl= {'cat' => 'dog', 'tomatoes' => 'pasta', 'felines++' => 'wolves--', };
is(
repl_simple($mystring, $repl),
$expected,
'no module, meta-characters in expression'
);
$re= regexp_assemble( $repl);
is(
repl_assemble($mystring, $re),
$expected,
'with Regex::Assemble, meta-characters in expression'
);
sub repl_simple {
my( $string, $repl)= @_;
my $alternative= join( '|', reverse sort keys %$repl);
$string=~ s{($alternative)}{$repl->{$1}}ig;
return $string;
}
sub regexp_assemble {
my( $repl)= @_;
my $ra = Regexp::Assemble->new;
foreach my $alt (keys %$repl)
{ $ra->add( '\Q' . $alt . '\E'); }
return $ra->re;
}
sub repl_assemble {
my( $string, $re)= @_;
$string=~ s{($re)}{$repl->{$1}}ig;
return $string;
}
</code></pre>
http://stackoverflow.com/questions/1470068/how-can-i-interface-with-the-perl-debugger-api/1470119#14701195Answer by mirod for How can I interface with the Perl debugger API?mirod2009-09-24T06:52:33Z2009-09-24T06:52:33Z<p>The default Perl debugger was not designed with a clean API to interact with, so the easiest way is probably not to use it, but to use <a href="http://search.cpan.org/dist/Devel-ebug/" rel="nofollow">Devel::ebug</a>, which offers an API to an alternative debugger. You can also trigger the debugger from inside your code, calling an interactive debugger session, with <a href="http://search.cpan.org/dist/Enbugger/" rel="nofollow">Enbugger</a>.</p>
http://stackoverflow.com/questions/1403205/how-can-i-extract-addresses-and-phone-number-from-html/1403988#14039882Answer by mirod for How can I extract addresses and phone number from HTML?mirod2009-09-10T08:10:59Z2009-09-10T08:10:59Z<p>There are 2 parts to this: extract the complete address from the page, and parse that address into something you can use (store the various parts in a DB for example).</p>
<p>For the first part you will need a heuristic, most likely country-dependant: for US addresses <code>[A-Z][A-Z],?\s*\d\d\d\d\d</code> should give you the end of an address, provided the 2 letters turn out to be a state. Finding the beginning of the string is left as an exercise. </p>
<p>The second part can be done either through a call to Google maps, or as usual in Perl, using a CPAN module: <a href="http://search.cpan.org/dist/Lingua-EN-AddressParse/" rel="nofollow">Lingua::EN::AddressParse</a> (test it on your data to see if it works well enough for you).</p>
<p>In any case this is a difficult task, and you will most likely never get it 100% right, so plan for manually checking the addresses before using them.</p>
http://stackoverflow.com/questions/1392005/how-can-i-get-dynamically-web-content-using-perl/1392738#13927381Answer by mirod for How can I get dynamically web content using Perl?mirod2009-09-08T08:36:30Z2009-09-08T08:36:30Z<p>If you are writing tests that need to check the rendered page, you can have a look at Schwern's <a href="http://github.com/schwern/javascript-tap-harness/tree/master" rel="nofollow">javascript-tap-harness</a>, which works with Selenium and handles all the scaffolding. </p>
<p>I also found <a href="http://perlmonks.org/?node%5Fid=720018" rel="nofollow">Using WWW::Selenium To Test Or Automate An Ajax Website</a> pretty useful.</p>
http://stackoverflow.com/questions/1392181/how-can-i-convert-an-xml-processing-instruction-to-a-tag-using-perl/1392648#13926483Answer by mirod for How can I convert an XML processing instruction to a tag using Perl?mirod2009-09-08T08:14:17Z2009-09-08T08:14:17Z<p>Oddly enough I would use <a href="http://search.cpan.org/dist/XML-Twig" rel="nofollow">XML::Twig</a> for that:</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use XML::Twig;
XML::Twig->new( twig_roots => { '#PI' => \&out_pi, },
twig_print_outside_roots => 1,
)
->parsefile( 'pi2elt.xml')
;
sub out_pi
{ my( $t, $pi)= @_;
my $target= $pi->target;
$target=~ s{^(.*)start$}{$1};
$target=~ s{^(.*)end$}{/$1};
print "<$target>";
}
</code></pre>
<p>This will go through the file, only processing PIs ( the <code>twig_roots</code> option)and outputting the rest unchanged (the <code>twig_print_outside_roots</code> option). </p>
<p>A few caveats: your input file needs to be valid XML, so it must be in UTF-8 or UTF-16, or have an XML declaration that specifies its encoding. There is also no check at all that the output is valid XML, you can check the output with any proper XML parser.</p>
http://stackoverflow.com/questions/1392349/how-do-i-search-for-exe-files-with-a-perl-program/1392421#13924213Answer by mirod for How do i search for .exe files with a Perl program?mirod2009-09-08T07:08:41Z2009-09-08T07:52:53Z<p>As mentioned, It is not clear whether you want '*.exe' files, or executable files.
You can use File::Find::Rule to find all executable files.</p>
<pre><code> my @exe= File::Find::Rule->executable->in( '/'); # all executable files
my @exe= File::Find::Rule->name( '*.exe')->in( '/'); # all .exe files
</code></pre>
<p>If you are looking for executable files, you (the user running the script) need to be able to execute the file, so you probably need to run the script as root.</p>
<p>It might take a long time to run to.</p>
<p>If you are looking for .exe files, chances are that your disk is already indexed by <code>locate</code>. So this would be much faster:</p>
<pre><code> my @exe= `locate \.exe | grep '\.exe$'`
</code></pre>
http://stackoverflow.com/questions/1130204/teach-perl-in-4-hours-my-way/1130253#11302532Answer by mirod for Teach Perl in 4 Hours, My Waymirod2009-07-15T09:04:37Z2009-07-15T09:04:37Z<p>Have a look at the answers for <a href="http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities">How can I impress people with perl's capabilities</a></p>
http://stackoverflow.com/questions/1102628/how-do-i-print-the-character-with-printf/1102638#110263813Answer by mirod for How do I print the '%' character with 'printf'?mirod2009-07-09T08:52:56Z2009-07-09T09:00:32Z<p>You would use %%, not \% (from man <a href="http://perldoc.perl.org/functions/sprintf.html" rel="nofollow">printf</a>)</p>
http://stackoverflow.com/questions/1102142/survey-how-are-you-using-id-idref-or-key-keyref/1102201#11022011Answer by mirod for Survey: how are you using ID/IDREF? (or key/keyref)mirod2009-07-09T06:46:18Z2009-07-09T06:46:18Z<p>I mostly use XML for publishing, not to store data, so I use ID/IDREFs for links and cross-references (where the content of the element with the IDREF will be pulled from the element with the ID).</p>
http://stackoverflow.com/questions/1102077/how-to-change-this-regular-expression-to-be-case-insenstive-looking-for-src-tag/1102108#11021082Answer by mirod for How to change this regular expression to be case insenstive (looking for src tag)mirod2009-07-09T06:16:14Z2009-07-09T06:16:14Z<p>It seems to me that if you want to process HTML, the best way to go is to use a real HTML parser. </p>
<p>Although I am not familiar with Java, there seems to be quite a few to choose from: <a href="http://java-source.net/open-source/html-parsers" rel="nofollow">Open Source HTML Parsers in Java</a>.</p>
<p>This will allow you to deal with cases like an other attribute being before the src and including the character '>', which is valid HTML, or the src attribute including a quote, and probably a few other unlikely but possible trickeries.</p>
http://stackoverflow.com/questions/1098281/how-do-i-disable-subtag-sorting-in-perls-xmlsimple/1100164#11001643Answer by mirod for How do I disable subtag sorting in Perl's XML::Simple?mirod2009-07-08T19:44:48Z2009-07-08T19:44:48Z<p>It seems that <a href="http://search.cpan.org/dist/Tie-IxHash" rel="nofollow">Tie::IxHash</a> can help you. </p>
<p>In my tests, reversing the email and name lines in the hash in the code below result in them being reversed in the output. I am not sure that would still be the case with more complex data structures, depending on whether XML::Simple reuses the original hash or copies it. </p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use Tie::IxHash;
use XML::Simple;
my( $id, $name, $email)= ( 'i1', 'John Doe', 'jdoe@example.com');
my %my_xml;
tie %my_xml, 'Tie::IxHash';
%my_xml = (
'EMAIL' => [$email],
'NAME' => [$name],
'ID' => $id,
);
my $xs = XML::Simple->new();
my $xml_ref = \%my_xml ;
my $xml = $xs->XMLout($xml_ref, RootName=> "datas" ,NoSort => 1);
print $xml;
</code></pre>
http://stackoverflow.com/questions/1093904/xpath-query-to-find-elements-which-contain-a-certain-descendant/1093985#10939853Answer by mirod for Xpath query to find elements which contain a certain descendantmirod2009-07-07T18:28:47Z2009-07-07T18:28:47Z<p>"has a descendant named interestintag" is spelled <code>.//interestintag</code> in XPath, so the expression you are looking for is: </p>
<pre><code>//table[@name='important']/tr[.//interestingtag]
</code></pre>
http://stackoverflow.com/questions/1048658/resize-images-in-directory/1048702#104870210Answer by mirod for Resize images in directorymirod2009-06-26T11:43:41Z2009-06-26T11:43:41Z<p>How about using mogrify, part of <a href="http://www.imagemagick.org/" rel="nofollow">ImageMagick</a>? If you really need to control this from Perl, then you could use <a href="http://search.cpan.org/dist/Image-Magick" rel="nofollow">Image::Magick</a>, <a href="http://search.cpan.org/dist/Image-Resize" rel="nofollow">Image::Resize</a> or <a href="http://search.cpan.org/dist/Imager" rel="nofollow">Imager</a>.</p>
http://stackoverflow.com/questions/1040657/how-can-i-grab-multiple-lines-after-a-matching-line-in-perl/1040714#10407148Answer by mirod for How can I grab multiple lines after a matching line in Perl?mirod2009-06-24T20:17:04Z2009-06-24T20:17:04Z<p>The short answer: line delimiter in perl is <code>$/</code>, so when you hit TARGET, you can set <code>$/</code> to <code>"\n\n"</code>, read the next "line", then set it back to "\n"... et voilà!</p>
<p>Now for the longer one: if you use the <code>English</code> module (which gives sensible names to all of Perl's magic variable, then <code>$/</code> is called <code>$RS</code> or <code>$INPUT_RECORD_SEPARATOR</code>. If you use <code>IO::Handle</code>, then <code>IO::Handle->input_record_separator( "\n\n")</code> will work.</p>
<p>And if you're doing this as part of a bigger piece of code, don't forget to either localize (using <code>local $/;</code> in the appropriate scope) or to set back <code>$/</code> to its original value of <code>"\n"</code>.</p>
http://stackoverflow.com/questions/1025973/how-can-i-write-a-long-regular-expression-so-it-fits-on-the-screen/1026534#102653413Answer by mirod for How can I write a long regular expression so it fits on the screen?mirod2009-06-22T10:51:17Z2009-06-22T10:51:17Z<p>As mentioned previously, it looks like you are looking for the x modifier.
That modifier ignores all whitespaces in the regexp, and allow comments (starting with #).</p>
<p>In your case it's a bit ugly though, because you then have to replace all the spaces that
you do want to match in the regexp by [ ], \s or \s+:</p>
<pre><code>$array_11 =~ m{By \s+ Steve \s+ (.*), \s+
MarketWatch \s+ LONDON \s+ (.*) \s+
-- \s+ Shares \s+ of \s+ Anglo \s+ American \s+
rallied \s+ on \s+ Monday \s+ morning \s+ as \s+
(.*) \s+ bet \s+ that \s+ the \s+ mining \s+
group \s+ will \w+ reject \w+ a \w+(.*)
}x;
</code></pre>
<p>So in fact I would probably write something like this:</p>
<pre><code>my $sentence= q{By Steve (.*), MarketWatch LONDON (.*) }
. q{-- Shares of Anglo American rallied on Monday morning as (.*) }
. q{bet that the mining group will reject a (.*)}
;
my $array_11=~ m{$sentence};
</code></pre>
<p>A last comment: <code>$array_11</code> has a strong code smell, if it's an array, then make it an array, not several scalar variables.</p>
http://stackoverflow.com/questions/1004696/cleanest-perl-parser-for-makefile-like-continuation-lines/1005917#10059173Answer by mirod for Cleanest Perl parser for Makefile-like continuation linesmirod2009-06-17T08:56:39Z2009-06-17T09:03:16Z<p>If you don't mind loading the entire file in memory, then the code below passes the tests.
It stores the lines in an array, adding each line either to the previous one (continuation) or at the end of the array (other).</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
my @out;
while( <>)
{ chomp;
s{#.*}{}; # suppress comments
next unless( m{\S}); # skip blank lines
if( s{^\s+}{ }) # does the line start with spaces?
{ $out[-1] .= $_; } # yes, continuation, add to last line
else
{ push @out, $_; } # no, add as new line
}
$, = "\n"; # set output field separator
$\ = "\n"; # set output record separator
print @out;
</code></pre>
http://stackoverflow.com/questions/893585/how-to-parse-xml-in-bash/893614#8936141Answer by mirod for How to parse XML in Bash?mirod2009-05-21T15:43:58Z2009-06-14T21:40:32Z<p>I am not aware of any pure shell XML parsing tool. So you will most likely need a tool written in an other language.</p>
<p>My XML::Twig Perl module comes with such a tool: <code>xml_grep</code>, where you would probably write what you want as <code>xml_grep -t '/html/head/title' xhtmlfile.xhtml > titleOfXHTMLPage.txt</code> (the <code>-t</code> option gives you the result as text instead of xml)</p>
http://stackoverflow.com/questions/1732247/how-to-get-attributes-value-while-parsing-xml-with-xmldom-parser-in-perl/1732646#1732646Comment by mirod on How to get attributes value while parsing xml with XML::DOM parser in perl ?mirod2009-11-14T06:20:10Z2009-11-14T06:20:10ZXML::DOM is not really maintained these days. Did you try XML::LibXML? It's probably a better option these days if you want to use the DOM. http://stackoverflow.com/questions/1531664/in-what-order-do-templates-in-an-xslt-document-execute-and-do-they-match-on-the/1531857#1531857Comment by mirod on In what order do templates in an XSLT document execute, and do they match on the source XML or the buffered output?mirod2009-10-07T15:10:22Z2009-10-07T15:10:22Zsorta, the rules are given in the spec: <a href="http://www.w3.org/TR/xslt#conflict" rel="nofollow">w3.org/TR/xslt#conflict</a>. Unless you use the priority attribute, then a lot of patterns end up with the same priority. Note the last paragraph of the section in the spec though: "an XSLT processor may signal the error".http://stackoverflow.com/questions/1524597/how-can-i-extract-some-xml-data-from-a-url-using-xmltwig/1525086#1525086Comment by mirod on How can I extract some XML data from a URL using XML::Twig?mirod2009-10-06T16:20:00Z2009-10-06T16:20:00Z@draegtun thanks, I quite like working on it too.http://stackoverflow.com/questions/1526270/how-do-i-create-a-perl-regular-expression-to-remove-all-characters-before-the-fir/1526316#1526316Comment by mirod on How do I create a Perl regular expression to remove all characters before the first "<"?mirod2009-10-06T16:17:41Z2009-10-06T16:17:41ZIndeed, s/^[^<]+// is quite nicehttp://stackoverflow.com/questions/1526270/how-do-i-create-a-perl-regular-expression-to-remove-all-characters-before-the-fir/1526316#1526316Comment by mirod on How do I create a Perl regular expression to remove all characters before the first "<"?mirod2009-10-06T15:38:05Z2009-10-06T15:38:05ZThere is no need to, I just find s/^.+(?=<)// harder to read. I have to pause and remember that ?= is a positive lookahead, My brain can parse s{^.*<}{<} much fasterhttp://stackoverflow.com/questions/1524597/how-can-i-extract-some-xml-data-from-a-url-using-xmltwig/1525086#1525086Comment by mirod on How can I extract some XML data from a URL using XML::Twig?mirod2009-10-06T15:28:29Z2009-10-06T15:28:29Zin fact nparse and xparse were kinda failed experiments, which eventually lead me to the simple rewriting of parse to take care of everything for you (new <i>and</i> determining the kind of parse to use)http://stackoverflow.com/questions/1524597/how-can-i-extract-some-xml-data-from-a-url-using-xmltwig/1525086#1525086Comment by mirod on How can I extract some XML data from a URL using XML::Twig?mirod2009-10-06T13:58:21Z2009-10-06T13:58:21Zit's not a bug in nparse, it's a bug in the way it's called ;--)http://stackoverflow.com/questions/1447632/how-can-i-get-content-using-xmltwig/1447740#1447740Comment by mirod on How can I get content using XML::Twig?mirod2009-09-19T11:24:44Z2009-09-19T11:24:44Ztwig_handlers are the usual way of calling handlers, start_tag_handlers should be used only when using twig_handlers is not possible (the element is potentially too big for example). end_tag_handlers should be used even less, as mentioned in the docs.http://stackoverflow.com/questions/1264506/how-can-i-add-an-attribute-to-a-child-element-using-perls-xmltwig/1265006#1265006Comment by mirod on How can I add an attribute to a child element using Perl's XML::Twig?mirod2009-08-13T07:26:54Z2009-08-13T07:26:54ZA style comment: I like to use the fat comma with set_att: set_att(ATVAL => "value2"); Maybe that's just me, but it looks nicer, after all attributes are very similar to hashes (keys must be unique,they are not considered ordered).http://stackoverflow.com/questions/1130204/teach-perl-in-4-hours-my-way/1130267#1130267Comment by mirod on Teach Perl in 4 Hours, My Waymirod2009-07-15T09:13:18Z2009-07-15T09:13:18ZIf the audience is made of programmers, I would avoid that. In 4 hours they would just get the impression that the syntax is complex, and still have little idea about what you can do with the language. Showing CPAN explains how you can leverage (sorry!) the syntax and the existing modules to actually do cool stuff.http://stackoverflow.com/questions/10533/parsing-attributes-with-regex-in-perl/10537#10537Comment by mirod on Parsing attributes with regex in Perlmirod2009-07-15T09:01:46Z2009-07-15T09:01:46ZThis looks to me simpler and more maintainable than any of the "one regexp to rule them all" solutions. I would maybe just add a ^ at the beginning of theregexps to match x= and y= to avoid the case not_x=... or similar. Why do you want a single regexp?http://stackoverflow.com/questions/1112983/in-perl-how-can-i-tell-if-a-string-is-a-number/1112992#1112992Comment by mirod on In Perl, how can I tell if a string is a number?mirod2009-07-11T05:01:58Z2009-07-11T05:01:58Zjust realize that looks_like_number returns true for 'inf', 'nan', '1E02' and probably a few more strings that you might not expect to be numbers.http://stackoverflow.com/questions/1108527/recursively-add-file-extension-to-all-files/1108613#1108613Comment by mirod on recursively add file extension to all filesmirod2009-07-10T09:42:19Z2009-07-10T09:42:19Zit can, but it will also rename directories, and there is no way to tell it to work recursively in sub-directories (at least with the version I have on Ubuntu).http://stackoverflow.com/questions/1093904/xpath-query-to-find-elements-which-contain-a-certain-descendant/1093995#1093995Comment by mirod on Xpath query to find elements which contain a certain descendantmirod2009-07-10T07:38:53Z2009-07-10T07:38:53Z+1 from me too, I am used to the ".//" form, but I also do Perl for a living ;--) so "descendant::" is probably clearer.http://stackoverflow.com/questions/1102628/how-do-i-print-the-character-with-printf/1102638#1102638Comment by mirod on How do I print the '%' character with 'printf'?mirod2009-07-09T09:07:30Z2009-07-09T09:07:30Z@Rob Kennedy: "perldoc -f printf" doesn't give me any detail but instead refers me to sprintf. "perldoc -f sprintf" indeed gives me all the details I need, much like "man printf". "man 3 printf" OTOH gives me the man page for an OCaml library. That's on a recent kUbuntu (with OCaml installed obviously!)