14
votes
Why does this map statement in Perl not compile?
Because Perl is guessing an EXPR (a hash reference, for example) instead of a BLOCK. This should work (note the '+' symbol):
my @a = ("a", "b", "c", "d", "e");
my %h = map { +"prefi …
2
votes
How can I search CSS with Perl?
Well, this is not as simple as it seems.
CSS classes can be defined in many ways. For example,
.classy {
color: black;
}
Good luck using a …
3
votes
How can I strip invalid XML characters from strings in Perl?
Okay, this seems to be already answered, but what the hey. If you want to author XML documents, you must use an XML library.
#!/usr/bin/perl
use strict;
use XML::Li …
1
vote
How can I store a Perl array in an array?
Use splice.
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
my @array1 = ("element 1", "elemen …
-2
votes
How can I convert JSON boolean values for output using XMLout?
Edit: I wrote this answer before all the edits to the original question. The question as stated now is that the original poster wants to create an XML-ready structure for using …
0
votes
Parsing comma separated lines and calculating sum
Well, it seems that everybody is trying to understand what you really want. I don't understand it, but it seems that you only want to capture the sum of all lines that contain a given key=value pai …
6
votes
Why do Perl variables need to start with $, %,@ ?
Several reasons are explained by Larry Wall et al in "Programming Perl":
W …
1
vote
Can I read and write to multiple filehandles simulateously (Perl)?
From what I gather, your script wants to convert a file in the following form:
define({{VAR1}}, {{__VALUE__}})
define({{VAR2}}, {{__VALUE__}})
define({{VAR3}}, {{__VALUE__}})
define …
1
vote
Is 999…9 a real number in Perl?
Also, you may want to take a look at bignum in the Perl documentation.
…
0
votes
Regexp/perl code for handling both dots and commas as valid decimal separators
Trying to guess the locale of anything is always an ongoing effort, at best. What are you using this function for? The following tests look simply wrong to me:
ok(&pars …
2
votes
Why does my Perl for loop exit early?
There are lots of strange things in your code: you are initializing a matrix then not using it; reading a whole file into an array; scanning a string C style but then not doing anything with the un …
1
vote
Fast algorithm to check membership of a pair of numbers in large (x,y) coordinates in Perl
Restating your question, do you want to print all ranges in a file that contains the (x, y) pair and also have the same id? If that's the case, you don't need to parse the file and storing …
1
vote
Is there a C equivalent for Perl’s Carp module?
Well, I never tried to show the call stack, but for my programs I used to do the following.
First, I define a function that do the actual logging. This is just an example; …
0
votes
How can I plot a time series graph with Perl?
Do you need your graph to be generated in real time, or is for a one-off report? If the latter, then you can use DateTime modules to generate Excel values and graph them in Excel (or its open-sourc …
0
votes
How can I remove external links from HTML using Perl?
Yet another solution. I love HTML::TreeBuilder and family.
#!/usr/bin/perl
use strict;
use …
