User mirod - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:04:01Z http://stackoverflow.com/feeds/user/11095 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1889780/intelligent-regex-in-perl/1892761#1892761 3 Answer by mirod for Intelligent RegEx in Perl? mirod 2009-12-12T08:22:18Z 2009-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-&gt;new( # only process those elements twig_roots =&gt; { $tag =&gt; sub { # add/set attribute $_-&gt;set_att( $att =&gt; $val); # output and free memory $_-&gt;flush; } }, twig_print_outside_roots =&gt; 1, # output everything else pretty_print =&gt; 'cvs', # seems to be the right format ) -&gt;parse( \*DATA) # use parsefile( $file) if parsing... a file -&gt;flush; # not needed in XML::Twig 3.33 __DATA__ &lt;doc&gt; &lt;Foo Bar="bar" Baz="1" Bax="bax" &gt; here is some text &lt;/Foo&gt; &lt;Foo CustomAttribute="TRUE"&gt;&lt;Foo no_att="1"/&gt;&lt;/Foo&gt; &lt;bar&gt;&lt;![CDATA[&lt;Foo no_att="1"&gt;tricked?&lt;/Foo&gt;]]&gt;&lt;/bar&gt; &lt;Foo&gt;&lt;![CDATA[&lt;Foo no_att="1" CustomAttribute="TRUE"&gt;tricked?&lt;/Foo&gt;]]&gt;&lt;/Foo&gt; &lt;Foo Bar="&gt;" Baz="1" Bax="bax" &gt;&lt;/Foo&gt; &lt;Foo Bar=" &gt;" Baz="1" Bax="bax" &gt;&lt;/Foo&gt; &lt;Foo Bar="&gt;" Baz="1" Bax="bax" CustomAttribute="TRUE" &gt;&lt;/Foo&gt; &lt;Foo Bar=" &gt;" Baz="1" Bax="b ax" CustomAttribute="TR UE" &gt;&lt;/Foo&gt; &lt;/doc&gt; </code></pre> http://stackoverflow.com/questions/1877108/select-value-with-linux-command-xpath-from-perl/1877511#1877511 0 Answer by mirod for Select value with Linux command xpath (from Perl) mirod 2009-12-09T22:58:34Z 2009-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#1839208 5 Answer by mirod for How should I parse large XML files in Perl? mirod 2009-12-03T10:58:11Z 2009-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#1709964 0 Answer by mirod for String corruption and nonprintable characters using XML::Twig in Win32 Perl mirod 2009-11-10T18:03:57Z 2009-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#1692439 2 Answer 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? mirod 2009-11-07T08:35:30Z 2009-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-&gt;new_from_file( "my.html"); # print $root-&gt;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-&gt;findnodes( qq{//div[.//dt[\@id="$id"]]}); print $divs[0]-&gt;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#569839 21 Answer by mirod for How do I read two items at a time in a Perl foreach loop? mirod 2009-02-20T14:57:50Z 2009-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-&gt;()) { 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#1593124 3 Answer by mirod for What would be your choice of Perl XML Parsers for files greater than 15 GB? mirod 2009-10-20T08:11:50Z 2009-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#1558977 11 Answer by mirod for How can I maintain the order of keys I add to a Perl hash? mirod 2009-10-13T08:46:33Z 2009-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 = &lt;DATA&gt;) { $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#1531857 0 Answer 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? mirod 2009-10-07T14:06:03Z 2009-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#1527814 0 Answer by mirod for "simple math syntax" to MathML converter mirod 2009-10-06T20:07:34Z 2009-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-&gt;new; my $ASCIIMathML = "int_0^1 e^x dx"; print $parser-&gt;TextToMathML($ASCIIMathML); </code></pre> <p>gives (reformatted for legibility):</p> <pre><code>&lt;math&gt; &lt;mstyle&gt; &lt;mrow&gt;&lt;msubsup&gt;&lt;mo&gt;&amp;#x222B;&lt;/mo&gt;&lt;mn&gt;0&lt;/mn&gt;&lt;mn&gt;1&lt;/mn&gt;&lt;/msubsup&gt;&lt;/mrow&gt; &lt;msup&gt;&lt;mi&gt;e&lt;/mi&gt;&lt;mi&gt;x&lt;/mi&gt;&lt;/msup&gt; &lt;mrow&gt;&lt;mi&gt;d&lt;/mi&gt;&lt;mi&gt;x&lt;/mi&gt;&lt;/mrow&gt; &lt;/mstyle&gt; &lt;/math&gt; </code></pre> http://stackoverflow.com/questions/1526270/how-do-i-create-a-perl-regular-expression-to-remove-all-characters-before-the-fir/1526316#1526316 3 Answer by mirod for How do I create a Perl regular expression to remove all characters before the first "<"? mirod 2009-10-06T15:24:45Z 2009-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/^.+(?=&lt;)//</code> should work, although personally I would write <code>s{^.*&lt;}{&lt;}</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#1525719 3 Answer by mirod for How can I extract some XML data from a URL using XML::Twig? mirod 2009-10-06T13:50:12Z 2009-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-&gt;parse( twig_roots =&gt; { 'smsc/received' =&gt; sub { $author= $_[1]-&gt;text;}}, $url ); $twig-&gt;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#1524016 3 Answer by mirod for Converting XML input from multiple lines to one line mirod 2009-10-06T07:02:52Z 2009-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 &lt;root&gt; &lt;address&gt;&lt;street&gt;abc&lt;/street&gt;&lt;number&gt;123&lt;/number&gt;&lt;/address&gt; &lt;address&gt;&lt;street&gt;abc1&lt;/street&gt;&lt;number&gt;345&lt;/number&gt;&lt;/address&gt; &lt;address&gt;&lt;street&gt;xyz&lt;/street&gt;&lt;number&gt;999&lt;/number&gt;&lt;/address&gt; &lt;address&gt;&lt;street&gt;abc&lt;/street&gt;&lt;number&gt;123&lt;/number&gt;&lt;/address&gt; &lt;address&gt;&lt;street&gt;abc1&lt;/street&gt;&lt;number&gt;345&lt;/number&gt;&lt;/address&gt; &lt;address&gt;&lt;street&gt;xyz&lt;/street&gt;&lt;number&gt;999&lt;/number&gt;&lt;/address&gt; &lt;/root&gt; </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#1476554 1 Answer by mirod for Beginner Regex: Multiple Replaces mirod 2009-09-25T10:27:12Z 2009-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 =&gt; 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 =&gt; 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' =&gt; 'dog', 'tomatoes' =&gt; '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' =&gt; 'dog', 'tomatoes' =&gt; 'pasta', 'catogan' =&gt; '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' =&gt; 'dog', 'tomatoes' =&gt; 'pasta', 'felines++' =&gt; '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-&gt;{$1}}ig; return $string; } sub regexp_assemble { my( $repl)= @_; my $ra = Regexp::Assemble-&gt;new; foreach my $alt (keys %$repl) { $ra-&gt;add( '\Q' . $alt . '\E'); } return $ra-&gt;re; } sub repl_assemble { my( $string, $re)= @_; $string=~ s{($re)}{$repl-&gt;{$1}}ig; return $string; } </code></pre> http://stackoverflow.com/questions/1470068/how-can-i-interface-with-the-perl-debugger-api/1470119#1470119 5 Answer by mirod for How can I interface with the Perl debugger API? mirod 2009-09-24T06:52:33Z 2009-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#1403988 2 Answer by mirod for How can I extract addresses and phone number from HTML? mirod 2009-09-10T08:10:59Z 2009-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#1392738 1 Answer by mirod for How can I get dynamically web content using Perl? mirod 2009-09-08T08:36:30Z 2009-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#1392648 3 Answer by mirod for How can I convert an XML processing instruction to a tag using Perl? mirod 2009-09-08T08:14:17Z 2009-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-&gt;new( twig_roots =&gt; { '#PI' =&gt; \&amp;out_pi, }, twig_print_outside_roots =&gt; 1, ) -&gt;parsefile( 'pi2elt.xml') ; sub out_pi { my( $t, $pi)= @_; my $target= $pi-&gt;target; $target=~ s{^(.*)start$}{$1}; $target=~ s{^(.*)end$}{/$1}; print "&lt;$target&gt;"; } </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#1392421 3 Answer by mirod for How do i search for .exe files with a Perl program? mirod 2009-09-08T07:08:41Z 2009-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-&gt;executable-&gt;in( '/'); # all executable files my @exe= File::Find::Rule-&gt;name( '*.exe')-&gt;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#1130253 2 Answer by mirod for Teach Perl in 4 Hours, My Way mirod 2009-07-15T09:04:37Z 2009-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#1102638 13 Answer by mirod for How do I print the '%' character with 'printf'? mirod 2009-07-09T08:52:56Z 2009-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#1102201 1 Answer by mirod for Survey: how are you using ID/IDREF? (or key/keyref) mirod 2009-07-09T06:46:18Z 2009-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#1102108 2 Answer by mirod for How to change this regular expression to be case insenstive (looking for src tag) mirod 2009-07-09T06:16:14Z 2009-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#1100164 3 Answer by mirod for How do I disable subtag sorting in Perl's XML::Simple? mirod 2009-07-08T19:44:48Z 2009-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' =&gt; [$email], 'NAME' =&gt; [$name], 'ID' =&gt; $id, ); my $xs = XML::Simple-&gt;new(); my $xml_ref = \%my_xml ; my $xml = $xs-&gt;XMLout($xml_ref, RootName=&gt; "datas" ,NoSort =&gt; 1); print $xml; </code></pre> http://stackoverflow.com/questions/1093904/xpath-query-to-find-elements-which-contain-a-certain-descendant/1093985#1093985 3 Answer by mirod for Xpath query to find elements which contain a certain descendant mirod 2009-07-07T18:28:47Z 2009-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#1048702 10 Answer by mirod for Resize images in directory mirod 2009-06-26T11:43:41Z 2009-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#1040714 8 Answer by mirod for How can I grab multiple lines after a matching line in Perl? mirod 2009-06-24T20:17:04Z 2009-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-&gt;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#1026534 13 Answer by mirod for How can I write a long regular expression so it fits on the screen? mirod 2009-06-22T10:51:17Z 2009-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#1005917 3 Answer by mirod for Cleanest Perl parser for Makefile-like continuation lines mirod 2009-06-17T08:56:39Z 2009-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( &lt;&gt;) { 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#893614 1 Answer by mirod for How to parse XML in Bash? mirod 2009-05-21T15:43:58Z 2009-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 &gt; 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#1732646 Comment by mirod on How to get attributes value while parsing xml with XML::DOM parser in perl ? mirod 2009-11-14T06:20:10Z 2009-11-14T06:20:10Z XML::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#1531857 Comment 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? mirod 2009-10-07T15:10:22Z 2009-10-07T15:10:22Z sorta, 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: &quot;an XSLT processor may signal the error&quot;. http://stackoverflow.com/questions/1524597/how-can-i-extract-some-xml-data-from-a-url-using-xmltwig/1525086#1525086 Comment by mirod on How can I extract some XML data from a URL using XML::Twig? mirod 2009-10-06T16:20:00Z 2009-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#1526316 Comment by mirod on How do I create a Perl regular expression to remove all characters before the first "<"? mirod 2009-10-06T16:17:41Z 2009-10-06T16:17:41Z Indeed, s/^[^&lt;]+// is quite nice http://stackoverflow.com/questions/1526270/how-do-i-create-a-perl-regular-expression-to-remove-all-characters-before-the-fir/1526316#1526316 Comment by mirod on How do I create a Perl regular expression to remove all characters before the first "<"? mirod 2009-10-06T15:38:05Z 2009-10-06T15:38:05Z There is no need to, I just find s/^.+(?=&lt;)// harder to read. I have to pause and remember that ?= is a positive lookahead, My brain can parse s{^.*&lt;}{&lt;} much faster http://stackoverflow.com/questions/1524597/how-can-i-extract-some-xml-data-from-a-url-using-xmltwig/1525086#1525086 Comment by mirod on How can I extract some XML data from a URL using XML::Twig? mirod 2009-10-06T15:28:29Z 2009-10-06T15:28:29Z in 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#1525086 Comment by mirod on How can I extract some XML data from a URL using XML::Twig? mirod 2009-10-06T13:58:21Z 2009-10-06T13:58:21Z it'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#1447740 Comment by mirod on How can I get content using XML::Twig? mirod 2009-09-19T11:24:44Z 2009-09-19T11:24:44Z twig_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#1265006 Comment by mirod on How can I add an attribute to a child element using Perl's XML::Twig? mirod 2009-08-13T07:26:54Z 2009-08-13T07:26:54Z A style comment: I like to use the fat comma with set_att: set_att(ATVAL =&gt; &quot;value2&quot;); 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#1130267 Comment by mirod on Teach Perl in 4 Hours, My Way mirod 2009-07-15T09:13:18Z 2009-07-15T09:13:18Z If 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#10537 Comment by mirod on Parsing attributes with regex in Perl mirod 2009-07-15T09:01:46Z 2009-07-15T09:01:46Z This looks to me simpler and more maintainable than any of the &quot;one regexp to rule them all&quot; 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#1112992 Comment by mirod on In Perl, how can I tell if a string is a number? mirod 2009-07-11T05:01:58Z 2009-07-11T05:01:58Z just 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#1108613 Comment by mirod on recursively add file extension to all files mirod 2009-07-10T09:42:19Z 2009-07-10T09:42:19Z it 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#1093995 Comment by mirod on Xpath query to find elements which contain a certain descendant mirod 2009-07-10T07:38:53Z 2009-07-10T07:38:53Z +1 from me too, I am used to the &quot;.//&quot; form, but I also do Perl for a living ;--) so &quot;descendant::&quot; is probably clearer. http://stackoverflow.com/questions/1102628/how-do-i-print-the-character-with-printf/1102638#1102638 Comment by mirod on How do I print the '%' character with 'printf'? mirod 2009-07-09T09:07:30Z 2009-07-09T09:07:30Z @Rob Kennedy: &quot;perldoc -f printf&quot; doesn't give me any detail but instead refers me to sprintf. &quot;perldoc -f sprintf&quot; indeed gives me all the details I need, much like &quot;man printf&quot;. &quot;man 3 printf&quot; OTOH gives me the man page for an OCaml library. That's on a recent kUbuntu (with OCaml installed obviously!)