IIRC I'd been given a project to do, writing some additional functionality for a VB app. My knowledge of VB was limited to VBA. A colleague (who had originally written the VB app in question) had a project to extend the functionality of a cgi/perl based LDAP performance monitor. We arranged to swap projects because I did at least understand CGI & LDAP, if not perl.
He loaned me "CGI Programming in perl", and once I found out how easy both CGI and LDAP were in perl, I was hooked.
After that it was a little while before I encountered regexes - some of my early scripts located text delimiters using code like this:
my $counter=0;
my $var;
while ($var ne "#")
{
$var = substr($string,$counter,1);
$counter++;
}
After I discovered regexes, I was even more impressed by perl, and it rapidly became my #1 tool for sysadmin scripts etc. In the last two or three years I've started to approach perl as a programming language, rather than just a tool for writing easy scripts, and once again it never fails to impress.
--------------------------------------------------------------
g0n, backpropagated monk
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.