1
vote
8answers
98 views
regular expression search, omit lines
Hi I want to search something in the file which looks similar to this :
Start Cycle
report 1
report 2
report 3
report 4
End Cycle
.... goes on and on..
I want to search for " …
0
votes
7answers
79 views
Reasons to ever use the two-argument form of open(…) in Perl?
Are there any reasons to ever use the two-argument form of open(...) in Perl rather than the three-or-more-argument versions?
The only reason I can come up with is the obvious obs …
0
votes
1answer
23 views
What is the best way to make login session ? with HTML::Mason (Perl)
Hi, I'm with some difficulties in make this.
I have a login html form, and i want to know if the user and password match with the information in my MySQL server.
My question: Wha …
13
votes
9answers
978 views
How do you translate this regular-expression idiom from Perl into Python?
I switched from Perl to Python about a year ago and haven't looked back. There is only one idiom that I've ever found I can do more easily in Perl than in Python:
if ($var =~ /fo …
0
votes
6answers
82 views
regex to remove prefix and another to upper case the first letter
I need to do things in 2 steps here:
modify all occurences of [xx_someText] with [someText]
modify all occurences of [someText] with [SomeText]
I need this in 2 regex because s …
0
votes
2answers
24 views
How do I query a view from SQL server with Perl and DBD::ODBC?
I can query the SQL server DB fine. The problem happens when I try and query a view.
I'm not trying to do anything crazy:
$sql = 'select * from location_v';
$stj = $db_destina …
0
votes
5answers
100 views
How do I fix “bash: perl myscript.pl: command not found”?
Maybe it's dumbest question in the world, but I seriously have problems with it and could use help. I am trying to run perl script on linux. It's a simple text editing script, noth …
4
votes
2answers
70 views
Creating Threaded callbacks in XS
EDIT: I have created a ticket for this which has data on an alternative to this way of doing things.
I have updated the code in an attempt to use MY_CXT's callback as gcxt was no …
5
votes
1answer
80 views
What problems should I expect when moving legacy Perl code to UTF-8?
Until now, the project I work in used ASCII only in the source code. Due to several upcoming changes in I18N area and also because we need some Unicode strings in our tests, we are …
0
votes
0answers
35 views
Non-trivial screen scraping selections using pQuery
I'm using pQuery (a Perl port of jQuery) to select elements and retrieve text from a HTML-document.
Consider the following markup:
<x>
<y>code1</y>
<z& …
0
votes
1answer
21 views
How to set multiple timefmt in gnuplot with perl?
I have created a tool to plot graphs using perl and gnuplot. This is working fine but I just have an issue with the timefmt. I have many input data files with date and some are wit …
1
vote
2answers
37 views
How can I identify if an item is a file or a directory using Net::SFTP?
How to identify whether the item of a directory is a file or a directory using Net::SFTP or ruby code?
2
votes
4answers
134 views
How do I fix the perl syntax error “missing right curly or square bracket” using VIM?
Compiling (or executing) a perl program with unmatched array braces ("[ ]") or scope brackets ("{ }") causes the "missing right curly or square bracket" syntax error. Perl often re …
4
votes
2answers
87 views
How can I call methods on Perl scalars?
I saw some code that called methods on scalars (numbers), something like:
print 42->is_odd
What do you have to overload so that you can achieve this sort of "functionality" i …
1
vote
3answers
67 views
Regex masters - ipv6..
So I need to match an ipv6 address which may or may not have a mask. Unfortunately I can't just use a library to parse the string.
The mask bit is easy enough, in this case:
(?:\ …
