mirod
|
Registered User
|
Perl & XML guy
|
|
Nov 14 |
comment |
How to get attributes value while parsing xml with XML::DOM parser in perl ? 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. |
|
Nov 10 |
answered | String corruption and nonprintable characters using XML::Twig in Win32 Perl |
|
Nov 7 |
answered | How can I find the contents of a div using Perl’s HTML modules, if I know a tag inside of it? |
|
Nov 3 |
awarded |
● |
|
Oct 29 |
revised |
How can I sum data over five minute time intervals in Perl? corrected spelling |
|
Oct 20 |
answered | What would be your choice of Perl XML Parsers for files greater than 15 GB? |
|
Oct 16 |
awarded | ● Nice Answer |
|
Oct 13 |
awarded | ● Nice Answer |
|
Oct 13 |
revised |
How can I maintain the order of keys I add to a Perl hash? added complete code |
|
Oct 13 |
answered | How can I maintain the order of keys I add to a Perl hash? |
|
Oct 7 |
comment |
In what order do templates in an XSLT document execute, and do they match on the source XML or the buffered output? sorta, the rules are given in the spec: w3.org/TR/xslt#conflict. 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". |
|
Oct 7 |
answered | In what order do templates in an XSLT document execute, and do they match on the source XML or the buffered output? |
|
Oct 7 |
accepted | How can I extract some XML data from a URL using XML::Twig? |
|
Oct 6 |
accepted | “simple math syntax” to MathML converter |
|
Oct 6 |
answered | “simple math syntax” to MathML converter |
|
Oct 6 |
comment |
How can I extract some XML data from a URL using XML::Twig? @draegtun thanks, I quite like working on it too. |
|
Oct 6 |
comment |
How do I create a Perl regular expression to remove all characters before the first “<”? Indeed, s/^[^<]+// is quite nice |
|
Oct 6 |
revised |
How do I create a Perl regular expression to remove all characters before the first “<”? fixed typo |
|
Oct 6 |
comment |
How do I create a Perl regular expression to remove all characters before the first “<”? There 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 faster |
|
Oct 6 |
revised |
How can I extract some XML data from a URL using XML::Twig? compacted code to fit on the screen without a slider |
|
Oct 6 |
comment |
How can I extract some XML data from a URL using XML::Twig? 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 and determining the kind of parse to use) |
|
Oct 6 |
answered | How do I create a Perl regular expression to remove all characters before the first “<”? |
|
Oct 6 |
comment |
How can I extract some XML data from a URL using XML::Twig? it's not a bug in nparse, it's a bug in the way it's called ;--) |
|
Oct 6 |
revised |
How can I extract some XML data from a URL using XML::Twig? added comment in code |
|
Oct 6 |
answered | How can I extract some XML data from a URL using XML::Twig? |
|
Oct 6 |
answered | Converting XML input from multiple lines to one line |
|
Sep 25 |
answered | Beginner Regex: Multiple Replaces |
|
Sep 24 |
answered | How can I interface with the Perl debugger API? |
|
Sep 19 |
comment |
How can I get content using XML::Twig? 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. |
|
Sep 17 |
awarded | ● Yearling |
|
Sep 15 |
awarded | ● Nice Answer |
|
Sep 10 |
answered | How can I extract addresses and phone number from HTML? |
|
Sep 8 |
answered | How can I get dynamically web content using Perl? |
|
Sep 8 |
answered | How can I convert an XML processing instruction to a tag using Perl? |
|
Sep 8 |
revised |
How do i search for .exe files with a Perl program? improved formating (changed the font for locate to show it's a command) |
|
Sep 8 |
answered | How do i search for .exe files with a Perl program? |
|
Aug 13 |
comment |
How can I add an attribute to a child element using Perl’s XML::Twig? A 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). |
|
Jul 16 |
revised |
Can annotations be used for code injection? added laanguage keyword |
|
Jul 15 |
comment |
Teach Perl in 4 Hours, My Way 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. |
|
Jul 15 |
answered | Teach Perl in 4 Hours, My Way |
|
Jul 15 |
comment |
Parsing attributes with regex in Perl This 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? |
|
Jul 11 |
comment |
In Perl, how can I tell if a string is a number? 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. |
|
Jul 10 |
comment |
recursively add file extension to all files 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). |
|
Jul 10 |
revised |
Magento XML layout with custom modules typo in the title (magneto for magento) |
|
Jul 10 |
comment |
Xpath query to find elements which contain a certain descendant +1 from me too, I am used to the ".//" form, but I also do Perl for a living ;--) so "descendant::" is probably clearer. |
|
Jul 9 |
awarded | ● Civic Duty |
|
Jul 9 |
awarded | ● Enlightened |
|
Jul 9 |
awarded | ● Nice Answer |
|
Jul 9 |
accepted | How do I print the ‘%’ character with ‘printf’? |
|
Jul 9 |
comment |
How do I print the ‘%’ character with ‘printf’? @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!) |
