1
vote
6answers
87 views
Why doesn’t Perl allow one liners to be ‘unblocked’?
for example:
if (something)
function();
else
nope();
0
votes
2answers
44 views
Encapsulating Content In a Variable
Hello,
I want to know how can I encapsulate the result(substr($text, 12)) of the variable $opt into itself(put the result replacing the expression substr($text, 12)), but how I can do this?
If …
-1
votes
6answers
138 views
What is /^ and /i in Perl?
Recently I downloaded a source (LevBot) and then I see this line:
} elsif($text =~ /^slaps $levbot_nick/i) {
But what /^ and /i do?
Why to use they?
I think this is regular expression, I'm …
3
votes
3answers
61 views
How do I install Perl modules on machines without an Internet connection?
I need to install my Perl-based software on networked machines which aren't connected to the internet. Therefore, I would like to download specific versions and/or latest versions of the Perl modules …
4
votes
7answers
102 views
Masking a string in perl using a mask string
I have a string such as 'xxox-x' that I want to mask each line in a file against as such:
x's are ignored (or just set to a known value)
o's remain unchanged
the - is a variable length field that …
-3
votes
2answers
44 views
How can I add an image to a table in Perl?
I have developed a database using Perl DBI and display using Perl CGI. Can you please suggest syntax for adding an image to the table and its background in the database.
1
vote
2answers
68 views
How can I listen on multiple sockets in Perl?
Hi:
I want to listen on different sockets on a TCP/IP client written in Perl. I know I
have to use select() but I don't know exactly how to implement it.
Can someone show me examples?
Thanks
0
votes
3answers
63 views
How do I present an open folder selection dialog in Perl?
How do I open folder selection dialog in Perl?
2
votes
1answer
58 views
How do I schedule a task in Perl?
Does anyone knows if perl supports a task scheduler?
I am working on a c# program that controls a bunch of perl scripts. The perl
script talked to some device over the socket interface. The device, …
5
votes
4answers
102 views
How can I show Perl console output in a GUI?
I have several simple Perl programs writing to the standard output, but this has some problems :
some of my users are scared by a console
my users works on Windows, so my program output is displayed …
4
votes
4answers
116 views
How can I get one Perl script to see variables in another Perl script?
I have a Perl script that is getting big, so I want to break it out into multiple scripts. namely, I want to take out some large hash declarations and put them into another file. How do I get the …
5
votes
5answers
110 views
How can I sum arrays element-wise in Perl?
Hi.
I have two arrays:
@arr1 = ( 1, 0, 0, 0, 1 );
@arr2 = ( 1, 1, 0, 1, 1 );
I want to sum items of both arrays to get new one like
( 2, 1, 0, 1, 2 );
Can I do it without looping through arrays?
…
1
vote
5answers
133 views
What happens when you put an array on the right side of a => operator?
This might seem like a stupid question but it's been a long day. I'm an adapting some Perl code for another use and I ran across this syntax:
my @request;
#... fill the array with stuff...
my …
2
votes
2answers
99 views
How can I find strings that have mixed cased with Perl?
I'm trying to filter thousands of files, looking for those which contain string constants with mixed case. Such strings can be embedded in whitespace, but may not contain whitespace themselves. So the …
2
votes
6answers
172 views
How can I sort a Perl list in an arbitrary order?
Hi Everyone,
I have a list of strings whose values come from a fixed set. I need to sort this
list in an arbitrary order.
The order of the set is specified by another list of all possible strings, …
