archives | Data Conversion

archives

FAQ 2.13 What mailing lists are there for Perl?

This is an excerpt from the latest version perlfaq2.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

Regex for "at start of line OR preceded by space".

I needed a regex that says "either at the start of a line, OR preceded by some whitespace". The whitespace (if any) is not to be part of the match. That part I know how to do with lookbehind: (?<=\s)($Regex1) Start of line is easy too: ^($Regex1) but when I tried to or them together: my $Regex2 = qr{^ (?<=\s)($Regex1)};

FAQ 2.15 Where can I buy a commercial version of perl?

This is an excerpt from the latest version perlfaq2.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

FAQ 2.12 Which magazines have Perl content?

This is an excerpt from the latest version perlfaq2.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

FREE LIFETIME INCOME – EARN $100/DAY– DON’T MISS,

Make money online free work at home guide home based business... EARNING DAILY A MINIMUM OF $200 WORKING ONLY 2HRS DAILY.... Money Making Ideas and Tips from The Money Zone... Work at Home Businesses - Money Making Opportunties... More Info ; [link]

FAQ 3.5 How do I debug my Perl programs?

This is an excerpt from the latest version perlfaq3.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

Moving and upgrading DB at the same time

In order to upgrade a 9i DB (Oracle 9.2.0.5 on Redhat Linux Adv. Server 2.1 32 bit) to version 10g (Oracle 10.2.0.3 on Redhat Linux Ent. Ed. V 4 64 bit) I will move all files of the shut down DB to a new server where the target version of Oracle is istalled and take care that datafile paths on the new server are the same as on the old

Post-Install of HTML DB

I am considering to install HTML DB from the companion CD on a server where only the Oracle software itself (V. 10.2.0.3) but no DB yet exists. The installation program offers to choose an installation including Apache if it has not been installed, and then it needs a different OracleHome path. I always thought that Apache was always installed with Oracle per

Changing module bahavior WWW::Mechanize

So I want to fetch some web pages and then grab some image files they refer to. The images are linked with the standard <img src="... html tag. WWW::Mechanize is perfect for that, except that the links it scans for do not include image tags. Hunting in Mechanize.pm I find the list it uses, which is:

use perl to draw Venn Diagram

Perl has a GD library. But its circle, arc, line and alike seem to have limited applications. I just want to plot 2 circles, one with solid line and another with dotted line, overlapping with each other according to an input overlapping parameter (I guess this feature may be achieved by locating the 2 centers