Search Results

7
votes

Do you prefer “if (var)” or “if (var != 0)”?

In Perl if (defined $var and $var ne '') and if( $var) are NOT equivalent. Try it with $var=0. Conversely if you test on $var!=0 all strings that …
2
votes

What is an XML parser? Using Expat

Instead of expat, you might want to have a look at libxml2, which is probably already included in your distribution. It's a lot more powerful than expat, and gives you all sorts of goodies: DOM (tr …
7
votes

How can I strip multiline C comments from a file using Perl?

As often in Perl, you can reach for the CPAN: Regexp::Common::Comment should help you. The one la …