4
votes
Is there a simple way to do bulk file text substitution in place?
Change
foreach my $f (@files){
if ($f =~ s/thisgoesout/thisgoesin/gi) {
#inplace file editing, or something like that
}
}
To
for …
1
vote
Why would HMAC SHA-1 return a different digest with the same input?
The encoding subroutine is virtually identical in both scripts (except for an unused argument passed to the subroutine, which I remove from my custom version).
…
5
votes
Why is there no IronPerl (Perl for .Net)?
Parrot has (or at least had) a project to do this. You can read …
0
votes
Can I autodiscover parameters to shell or Perl scripts to “meta” program WEB UIs for them?
Aside from Catalyst, CGI has a standard way to send in parameters via GET or POST, and …
1
vote
How do I serve a large file for download with Perl?
Answering the (original) question ("Does Perl have an equivalent to PHP's readline() function ... ?"), the answer is "the angle bracket syntax":
open my $fh, '<', '/path/to/file. …
2
votes
Is there a Perl script to implement C++ Class get/set member functions?
I know of one programmer who uses Perl as a replacement for the C preprocessor when it comes to macros. The basic idea is you would decide on some convention to tell your Perl script when to gener …
1
vote
How can I reclaim memory from perl?
Perl "supports" returning memory to the operating system if the operating system is willing to take that memory back. I use the quotes because, IIRC, Perl does not promise when it will give that m …
5
votes
What is Perl’s “standard string comparison order”?
I can't answer the whole question, so let me hone in on one part:
const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
…
