2
votes
Passing a regex substitution as a variable in Perl?
s/// is not a regex. Thus, you can't pass it as a regex.
I don't like eval for this, it's very fragile, with a lot of bordercases.
I think it's best to tak …
5
votes
How do I connect to a MSSQL database using Perl’s DBI module in Windows?
Use DBD::ODBC. If you just create a data source with the Control Panel -> System Management -> ODBC Data Sources -> System Data Source or User Data Source (those are the names as I remember them, b …
10
votes
Does Perl’s /m regex modifier match differently on Windows?
For these regexes:
m/\015\012/ms
m/\015\012/s
Both /m and /s are meaningless.
/s: makes . match \n …
14
votes
How can I repeat a string in Perl?
In Perl, you want to use the "x" operator.
Note the difference between
"4" x 4
and
("4") x 4
The former produces a repeat …
11
votes
Why is $1 empty in my substitution?
There's an error in your regex so that phrase will never match anything:
inline99_*?\.jpg
^^^
I think you forgot \d in front of the star, judg …
0
votes
What regex will capitalize any letters following whitespace?
You want to match letters behind whitespace, or at the start of a string.
Perl can't do variable length lookbehind. If it did, you could have used this:
s/(?<=\s|^)(\w)/\ …
1
vote
Is there a Perl module that works similarly to the Unix “which” command?
Have you seen this Snippet?
which (for Windows) in pure perl
The follow-up points to the module …
4
votes
How can I remove a file based on its creation date time in Perl?
On Unix you can't, because the file's creation date is not stored in the filesystem.
You may want to check out …
