SlideShare a Scribd company logo
Plunging Into Perl  While Avoiding the Deep End (mostly)
Some Perl nomenclature PERL – Practical Extraction and Report Language
Some Perl nomenclature PERL – Practical Extraction and Report Language PERL – Pathologically Eclectic Rubbish Lister (if you’re so inclined)
Some Perl nomenclature PERL – Practical Extraction and Report Language PERL – Pathologically Eclectic Rubbish Lister (if you’re so inclined) TMTOWTDI – There’s More Than One Way To Do It
Some Perl attributes it’s a scripted language, not compiled - faster, easier development runs plenty fast for most things
Some Perl attributes it’s a scripted language, not compiled - faster, easier development runs plenty fast for most things Loose variable typing - both good and bad, but mostly good
Your first program #!/usr/local/bin/perl print "Hello, World\n";
“Protecting” your program (Unix) By default, your program is not executable. chmod 744 your_program You can execute it as owner of the file, anyone else can only read it.
Variables $name can be text or number:  a character, a whole page of text, or any kind of number context determines type can go “both” ways
Variables, array of @employee Array of $employee variables $employee[0] $employee[1] etc.
Variables, hash of $lib{‘thisone’} = “2 days”; $lib{‘thatone’} = “5 days”; Thus can use $grace_period = $lib{$libname} when $libname is thatone, $grace_period is 5 days
Variables, list of ($var1, $var2, $var3) = function_that_does_something; This function returns a list of elements. A list is always inside parentheses ().
Variables, assigning a value to $var = value or expression $array[n] = something; @array = ();  # empty array %hash = ();  # empty hash Can be done almost anywhere, anytime.
Variable scope, and good practices use strict; Requires that you declare all variables like this: my $var; my $var = something; my @array = (); Also makes Perl check your code. Best Practices!
Variable scope, and good practices use strict; my $var; my $var = something; my @array = (); A variable declared like this is visible throughout your program. Best Practices!
Variable scope, and good practices use strict; my $var; my $var = something; my @array = (); A “my” declaration within code grouped within { and } is visible only in that section of code; it does not exist elsewhere. Best Practices! Scope: where in a program a variable exists.
File input and output (I/O)
Using command line arguments Usage:  program.pl infile outfile   $ARGV[0] $ARGV[1]
String manipulation & other stuff substring function
String manipulation & other stuff a better substring example
String manipulation & other stuff index function, find the location of a string in a string
String manipulation & other stuff The split function. Here we split string $l into pieces at every space character. Less common usage: take only 1 st  2 pieces.
String manipulation & other stuff Actually, the 2 nd  statement should be:  $l =~ s/^ +//; The ^ means start looking at the start of the line. find “db ratio” anywhere in $l
String manipulation & other stuff Instead of using $inline[n], $inline[n+1], etc., to refer to elements of array  @inline , here we can refer to  @inline’s  elements via $l in this example. Often makes for clearer and simpler code.
String manipulation & other stuff An often convenient way of populating an array.
String manipulation & other stuff Given $stuff = “this is me”; These are not equivalent: “ print $stuff” ‘ print $stuff’ `print $stuff`
String manipulation & other stuff Given $stuff = “this is me”; These are not equivalent: “ print $stuff” is “print this is me” ‘ print $stuff’ `print $stuff`
String manipulation & other stuff Given $stuff = “this is me”; These are not equivalent: “ print $stuff” is “print this is me” ‘ print $stuff’ is ‘print $stuff’ `print $stuff`
String manipulation & other stuff Given $stuff = “this is me”; `print $stuff`  would have the  operating system try to execute the command <print this is me>
String manipulation & other stuff This form should be used as $something = `O.S. command` Example:  $listing = ‘ls *.pl`; The output of this ls command is placed, as possibly a large string, into the variable $listing. This syntax allows powerful processing capabilities within a program.
printf, sprintf printf(“%s lines here”, $counter) if $counter is 42, we get 42 lines here for the output
printf, sprintf printf(“%c lines here”, $counter) if $counter is 42, we get * lines here for the output, since 42 is the ASCII value for “*”, and we’re printing a  c haracter
printf, sprintf Some additional string formatting… %s – output length is length($var) %10s – output length is absolutely 10  (right justified) %10.20s – output length is min 10,  max 20 %-10.10s – output length is absolutely 10  (left justified) Any padding is with space characters.
printf, sprintf Some additional number formatting… %d – output length is length($var) %10d – output length is absolutely 10   (leading space padded) %-10d – left justified, absolutely 10  (trailing space padded) %-10.10d – right justified, absolutely 10   (leading zero padded)
printf, sprintf Still more number formatting… %f – output length is length($var) %10.10f – guarantees 10 positions to the right of the decimal  (zero padded)
printf, sprintf printf  whatever  outputs to the screen
printf, sprintf printf  whatever  outputs to the screen printf  file   whatever  outputs to that file Ex:  printf file (“this is %s fun\n”, $much); ( print  functions just like the above, as to  output destination.)
printf, sprintf printf  whatever  outputs to the screen printf  file   whatever  outputs to that file Ex:  printf file (“this is %s fun\n”, $much); ( print  functions just like the above, as to  output destination.) sprintf is just like any printf, except that its output always goes to a string variable. Ex:  $var = sprintf(“this is %s fun\n”, $much);
ratiocheck.pl, what it does When the ratio of sizes of certain files related to a database exceeds a threshold, it’s probably time to do an index regen on that database.
ratiocheck.pl, what it does When the ratio of sizes of certain files related to a database exceeds a threshold, it’s probably time to do an index regen on that database. This program computes these ratios for several databases, each with its own threshold, and flags those that are candidates for index regeneration.
program dissection – ratiocheck.pl set up some variables two of these are templates for printing
program dissection – ratiocheck.pl In line 3 above, a file is  slurped,   i.e., the entire file is read into an array  via the <> mechanism.
program dissection – ratiocheck.pl This is a more typical use of the split function. Here, $item is separated into two pieces at the “|” character.
program dissection – ratiocheck.pl We want to check every database in alphabetical order. We are then calling the  checkit  subroutine for each database.
program dissection – ratiocheck.pl The system function executes its string as an O.S. command. Here we are mailing a file to two different people.
program dissection – ratiocheck.pl This subroutine takes 1 argument.
program dissection – ratiocheck.pl Remember our generic templates? Here they are used as a format string for the sprintf function. $generic_path = &quot;/m1/voyager/%s/data/&quot;;
program dissection – ratiocheck.pl The –s test returns a file’s size. (There are several dozen different –x file tests.)
program dissection – ratiocheck.pl Compute the files’ size ratio with sufficient decimal places.
program dissection – ratiocheck.pl \n means  new line , loosely equivalent to a CR, or carriage return. Since we want to print the “%” character, we have to escape it with the “\” backslash.
program dissection – ratiocheck.pl Here we have a hash reference…  we are checking if the ratio is greater than the threshold for the current database.
program dissection – ratiocheck.pl This is a busy printf statement… the  alert  text gets a string, a character, and a string embedded in it .
program dissection – ratiocheck.pl The  first  argument is a string, which is the output of the  sprintf  statement, which outputs the threshold value for this database.
program dissection – ratiocheck.pl The  second  argument is a character. We print the “%” character, whose ASCII value is 37.
program dissection – ratiocheck.pl The  third  argument is a string. In this case, the string consists of 35 asterisks. A string followed by “xN” will occur N times.
ratiocheck.pl, output Here’s what the output looks like:
DBI stuff What is it and why might I want it? DBI is the DataBase Interface module for Perl. You will also need the specific DBD (DataBase Driver) module for Oracle. This enables Perl to perform queries against your Voyager database. Both of these should already be on your Voyager box.
DBI stuff, how to You need four things to connect to Voyager: machine name your.machine.here.edu username your_username password your_password SID  VGER (or LIBR)
DBI stuff, how to $dbh is the handle for the database $sth is the handle for the query Create a query…then execute it. NOTE: SQL from Access will most      likely NOT work here!
DBI stuff, how to Get the data coming from your query.
DBI stuff, how to Get the data coming from your query. You’ll need a Perl variable for each column returned in the query. Commonly a list of variables is used; you could also use an array.
DBI stuff, how to Get the data coming from your query. You’ll need a Perl variable for each column returned in the query. Commonly a list of variables is used; you could also use an array. Typically, you get your data in a while loop, but you could have $var = $sth->fetchrow_array; when you know you’re getting a single value.
DBI stuff, how to When you’re done with a query, you should finish it. This becomes important when you have multiple queries in succession. You can have multiple queries open at the same time. In that case, make the statement handles unique…$sth2, or $sth_patron. Finally, you can close your database connection.
CPAN Comprehensive Perl Archive Network http://cpan.org You name it and somebody has probably written a Perl module for it, and you’ll find it here. There are also good Perl links here; look for the Perl Bookmarks link.
CPAN Installing modules You need to be  root  for systemwide installation on Unix systems. On Windows machines, you’ll need to be administrator. You can install them “just for yourself” with a bit of tweaking, and without needing root access.  If you’re not a techie, you’ll probably want to find someone who is, to install modules. Installing modules is beyond the scope of this presentation.
Perl on your PC You can get Perl for your PC from ActiveState. They typically have two versions available; I recommend the newer one. Get the MSI version. Installation is easy and painless, but it may take some time to complete. A lot of modules are included with this distribution; many additional modules are available. Module installation is made easy via the Perl Package Manager (PPM). Modules not found this way will require manual installation, details of which are beyond the scope of this presentation.
Date and Time in Perl, basic ### &quot;create&quot; today's date my ($sec, $min, $hour, $day, $month, $year, $wday, $yday, $isdst) = localtime; This gets the date and time information from the system.
Date and Time in Perl, basic ### &quot;create&quot; today's date my ($sec, $min, $hour, $day, $month, $year, $wday, $yday, $isdst) = localtime; my $today = sprintf (&quot;%4.4d.%2.2d.%2.2d&quot;, $year+1900, $month+1, $day); This puts today’s date in “Voyager” format, 2006.04.26
Date and Time in Perl The program, datemath.pl, is part of your handout. The screenshot below shows its output.
Regular expressions, matching m/PATTERN/gi If the  m  for matching is not there, it is assumed. The  g  modifier means to find globally, all occurrences. The  i  modifier means matching case insensitive. Modifiers are optional; others are available.
Regular expressions, substituting s/PATTERN/REPLACEWITH/gi The  s  says that substitution is the intent. The  g  modifier means to substitute globally, all occurrences. The  i  modifier means matching case insensitive. Modifiers are optional; others are available.
Regular expressions, translating tr/SEARCHFOR/REPLACEWITH/cd The  tr  says that translation is the intent. The  c  modifier means translate whatever is  not  in SEARCHFOR. The  d  modifier means to delete found but unreplaced characters. Modifiers are optional; others are available.
Regular expressions Look in the Perl book (see Resources) for an explanation on how to use regular expressions. You can look around elsewhere, at Perl sites, and in other books, for more information and examples. Looking at explained examples can be very helpful in learning how to use regular expressions. (I’ve enclosed some I’ve found useful; see Resources.)
Regular expressions Very powerful mechanism. Often hard to understand at first glance. Can be rather obtuse and frustrating! If one way doesn’t work, keep at it. Most likely there is a way that works!
Resources Advanced Perl Programming Learning Perl Perl in a Nutshell Programming Perl Perl Cookbook Perl Best Practices I use these two  a  lot Highly recommended once you’re experienced. These are all O’Reilly books.
Resources CPAN http://cpan.org Active State Perl http://activestate.com/Products/Download/Download.plex?id=ActivePerl The files listed below are available at http://homepages.wmich.edu/~zimmer/files/eugm2006 datemath.pl some program code for math with dates snippet.grep various regular expressions I’ve found useful Plunging Into Perl.ppt this presentation
Thanks for listening. Questions? [email_address] 269.387.3885 Picture © 2005 by Roy Zimmer

More Related Content

What's hot (20)

ODP
Perl Introduction
Marcos Rebelo
 
PPT
Perl Presentation
Sopan Shewale
 
PPTX
Bioinformatics p1-perl-introduction v2013
Prof. Wim Van Criekinge
 
ODP
Advanced Perl Techniques
Dave Cross
 
PDF
Introduction to Perl and BioPerl
Bioinformatics and Computational Biosciences Branch
 
PPT
Perl tutorial
Manav Prasad
 
PPTX
PHP Powerpoint -- Teach PHP with this
Ian Macali
 
PDF
Perl Scripting
Varadharajan Mukundan
 
PDF
Perl 5.10 for People Who Aren't Totally Insane
Ricardo Signes
 
PPT
LPW: Beginners Perl
Dave Cross
 
PPTX
Perl
Ahmed Hmed
 
PDF
Working with text, Regular expressions
Krasimir Berov (Красимир Беров)
 
ODP
Introduction to Modern Perl
Dave Cross
 
PDF
PHP7. Game Changer.
Haim Michael
 
PPT
05php
sahilshamrma08
 
PPT
Adv. python regular expression by Rj
Shree M.L.Kakadiya MCA mahila college, Amreli
 
PPTX
Regular expressions in Python
Sujith Kumar
 
PDF
Scala parsers Error Recovery in Production
Alexander Azarov
 
Perl Introduction
Marcos Rebelo
 
Perl Presentation
Sopan Shewale
 
Bioinformatics p1-perl-introduction v2013
Prof. Wim Van Criekinge
 
Advanced Perl Techniques
Dave Cross
 
Introduction to Perl and BioPerl
Bioinformatics and Computational Biosciences Branch
 
Perl tutorial
Manav Prasad
 
PHP Powerpoint -- Teach PHP with this
Ian Macali
 
Perl Scripting
Varadharajan Mukundan
 
Perl 5.10 for People Who Aren't Totally Insane
Ricardo Signes
 
LPW: Beginners Perl
Dave Cross
 
Working with text, Regular expressions
Krasimir Berov (Красимир Беров)
 
Introduction to Modern Perl
Dave Cross
 
PHP7. Game Changer.
Haim Michael
 
Adv. python regular expression by Rj
Shree M.L.Kakadiya MCA mahila college, Amreli
 
Regular expressions in Python
Sujith Kumar
 
Scala parsers Error Recovery in Production
Alexander Azarov
 

Viewers also liked (12)

PPT
Another Way to Attack the BLOB: Server-side Access via PL/SQL and Perl
Roy Zimmer
 
PPTX
My angelito's total makeover
Aritazul
 
PPT
Batchhow
Roy Zimmer
 
PPT
Marcive Documents: Catching Up and Keeping Up
Roy Zimmer
 
PPT
A Strand of Perls: Some Home Grown Utilities
Roy Zimmer
 
PPT
The Outer Planets Of Our Solar System
Mark L.
 
PDF
The Physics of God and the Quantum Gravity Theory of Everything
JamesRedford
 
PPT
The Outer Planets Of Our Solar System
Mark L.
 
PPT
Double page stages
MitchElsey
 
PPT
Voyager Meets MeLCat: MC'ing the Introductions
Roy Zimmer
 
PPT
Ray Owens 04.12.11
Ccasati
 
PPT
Orientation Session for (New) Presenters and Moderators
Roy Zimmer
 
Another Way to Attack the BLOB: Server-side Access via PL/SQL and Perl
Roy Zimmer
 
My angelito's total makeover
Aritazul
 
Batchhow
Roy Zimmer
 
Marcive Documents: Catching Up and Keeping Up
Roy Zimmer
 
A Strand of Perls: Some Home Grown Utilities
Roy Zimmer
 
The Outer Planets Of Our Solar System
Mark L.
 
The Physics of God and the Quantum Gravity Theory of Everything
JamesRedford
 
The Outer Planets Of Our Solar System
Mark L.
 
Double page stages
MitchElsey
 
Voyager Meets MeLCat: MC'ing the Introductions
Roy Zimmer
 
Ray Owens 04.12.11
Ccasati
 
Orientation Session for (New) Presenters and Moderators
Roy Zimmer
 
Ad

Similar to Plunging Into Perl While Avoiding the Deep End (mostly) (20)

PDF
Scripting3
Nao Dara
 
PDF
Tutorial perl programming basic eng ver
Qrembiezs Intruder
 
PPT
Introduction to Perl
NBACriteria2SICET
 
PDF
perl_lessons
tutorialsruby
 
PDF
perl_lessons
tutorialsruby
 
ODP
Beginning Perl
Dave Cross
 
ODP
Introduction to Perl
Dave Cross
 
PPT
PERL.ppt
Farmood Alam
 
PDF
Practical approach to perl day1
Rakesh Mukundan
 
PDF
Lecture19-20
tutorialsruby
 
PDF
Lecture19-20
tutorialsruby
 
PDF
newperl5
tutorialsruby
 
PDF
newperl5
tutorialsruby
 
PDF
Perl_Tutorial_v1
tutorialsruby
 
PDF
Perl_Tutorial_v1
tutorialsruby
 
DOCX
PERL for QA - Important Commands and applications
Sunil Kumar Gunasekaran
 
PDF
Unit VI
Bhavsingh Maloth
 
PPT
Crash Course in Perl – Perl tutorial for C programmers
Gil Megidish
 
PPT
7.1.intro perl
Varun Chhangani
 
PPT
Bioinformatica 29-09-2011-p1-introduction
Prof. Wim Van Criekinge
 
Scripting3
Nao Dara
 
Tutorial perl programming basic eng ver
Qrembiezs Intruder
 
Introduction to Perl
NBACriteria2SICET
 
perl_lessons
tutorialsruby
 
perl_lessons
tutorialsruby
 
Beginning Perl
Dave Cross
 
Introduction to Perl
Dave Cross
 
PERL.ppt
Farmood Alam
 
Practical approach to perl day1
Rakesh Mukundan
 
Lecture19-20
tutorialsruby
 
Lecture19-20
tutorialsruby
 
newperl5
tutorialsruby
 
newperl5
tutorialsruby
 
Perl_Tutorial_v1
tutorialsruby
 
Perl_Tutorial_v1
tutorialsruby
 
PERL for QA - Important Commands and applications
Sunil Kumar Gunasekaran
 
Crash Course in Perl – Perl tutorial for C programmers
Gil Megidish
 
7.1.intro perl
Varun Chhangani
 
Bioinformatica 29-09-2011-p1-introduction
Prof. Wim Van Criekinge
 
Ad

Recently uploaded (20)

PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 

Plunging Into Perl While Avoiding the Deep End (mostly)

  • 1. Plunging Into Perl While Avoiding the Deep End (mostly)
  • 2. Some Perl nomenclature PERL – Practical Extraction and Report Language
  • 3. Some Perl nomenclature PERL – Practical Extraction and Report Language PERL – Pathologically Eclectic Rubbish Lister (if you’re so inclined)
  • 4. Some Perl nomenclature PERL – Practical Extraction and Report Language PERL – Pathologically Eclectic Rubbish Lister (if you’re so inclined) TMTOWTDI – There’s More Than One Way To Do It
  • 5. Some Perl attributes it’s a scripted language, not compiled - faster, easier development runs plenty fast for most things
  • 6. Some Perl attributes it’s a scripted language, not compiled - faster, easier development runs plenty fast for most things Loose variable typing - both good and bad, but mostly good
  • 7. Your first program #!/usr/local/bin/perl print &quot;Hello, World\n&quot;;
  • 8. “Protecting” your program (Unix) By default, your program is not executable. chmod 744 your_program You can execute it as owner of the file, anyone else can only read it.
  • 9. Variables $name can be text or number: a character, a whole page of text, or any kind of number context determines type can go “both” ways
  • 10. Variables, array of @employee Array of $employee variables $employee[0] $employee[1] etc.
  • 11. Variables, hash of $lib{‘thisone’} = “2 days”; $lib{‘thatone’} = “5 days”; Thus can use $grace_period = $lib{$libname} when $libname is thatone, $grace_period is 5 days
  • 12. Variables, list of ($var1, $var2, $var3) = function_that_does_something; This function returns a list of elements. A list is always inside parentheses ().
  • 13. Variables, assigning a value to $var = value or expression $array[n] = something; @array = (); # empty array %hash = (); # empty hash Can be done almost anywhere, anytime.
  • 14. Variable scope, and good practices use strict; Requires that you declare all variables like this: my $var; my $var = something; my @array = (); Also makes Perl check your code. Best Practices!
  • 15. Variable scope, and good practices use strict; my $var; my $var = something; my @array = (); A variable declared like this is visible throughout your program. Best Practices!
  • 16. Variable scope, and good practices use strict; my $var; my $var = something; my @array = (); A “my” declaration within code grouped within { and } is visible only in that section of code; it does not exist elsewhere. Best Practices! Scope: where in a program a variable exists.
  • 17. File input and output (I/O)
  • 18. Using command line arguments Usage: program.pl infile outfile $ARGV[0] $ARGV[1]
  • 19. String manipulation & other stuff substring function
  • 20. String manipulation & other stuff a better substring example
  • 21. String manipulation & other stuff index function, find the location of a string in a string
  • 22. String manipulation & other stuff The split function. Here we split string $l into pieces at every space character. Less common usage: take only 1 st 2 pieces.
  • 23. String manipulation & other stuff Actually, the 2 nd statement should be: $l =~ s/^ +//; The ^ means start looking at the start of the line. find “db ratio” anywhere in $l
  • 24. String manipulation & other stuff Instead of using $inline[n], $inline[n+1], etc., to refer to elements of array @inline , here we can refer to @inline’s elements via $l in this example. Often makes for clearer and simpler code.
  • 25. String manipulation & other stuff An often convenient way of populating an array.
  • 26. String manipulation & other stuff Given $stuff = “this is me”; These are not equivalent: “ print $stuff” ‘ print $stuff’ `print $stuff`
  • 27. String manipulation & other stuff Given $stuff = “this is me”; These are not equivalent: “ print $stuff” is “print this is me” ‘ print $stuff’ `print $stuff`
  • 28. String manipulation & other stuff Given $stuff = “this is me”; These are not equivalent: “ print $stuff” is “print this is me” ‘ print $stuff’ is ‘print $stuff’ `print $stuff`
  • 29. String manipulation & other stuff Given $stuff = “this is me”; `print $stuff` would have the operating system try to execute the command <print this is me>
  • 30. String manipulation & other stuff This form should be used as $something = `O.S. command` Example: $listing = ‘ls *.pl`; The output of this ls command is placed, as possibly a large string, into the variable $listing. This syntax allows powerful processing capabilities within a program.
  • 31. printf, sprintf printf(“%s lines here”, $counter) if $counter is 42, we get 42 lines here for the output
  • 32. printf, sprintf printf(“%c lines here”, $counter) if $counter is 42, we get * lines here for the output, since 42 is the ASCII value for “*”, and we’re printing a c haracter
  • 33. printf, sprintf Some additional string formatting… %s – output length is length($var) %10s – output length is absolutely 10 (right justified) %10.20s – output length is min 10, max 20 %-10.10s – output length is absolutely 10 (left justified) Any padding is with space characters.
  • 34. printf, sprintf Some additional number formatting… %d – output length is length($var) %10d – output length is absolutely 10 (leading space padded) %-10d – left justified, absolutely 10 (trailing space padded) %-10.10d – right justified, absolutely 10 (leading zero padded)
  • 35. printf, sprintf Still more number formatting… %f – output length is length($var) %10.10f – guarantees 10 positions to the right of the decimal (zero padded)
  • 36. printf, sprintf printf whatever outputs to the screen
  • 37. printf, sprintf printf whatever outputs to the screen printf file whatever outputs to that file Ex: printf file (“this is %s fun\n”, $much); ( print functions just like the above, as to output destination.)
  • 38. printf, sprintf printf whatever outputs to the screen printf file whatever outputs to that file Ex: printf file (“this is %s fun\n”, $much); ( print functions just like the above, as to output destination.) sprintf is just like any printf, except that its output always goes to a string variable. Ex: $var = sprintf(“this is %s fun\n”, $much);
  • 39. ratiocheck.pl, what it does When the ratio of sizes of certain files related to a database exceeds a threshold, it’s probably time to do an index regen on that database.
  • 40. ratiocheck.pl, what it does When the ratio of sizes of certain files related to a database exceeds a threshold, it’s probably time to do an index regen on that database. This program computes these ratios for several databases, each with its own threshold, and flags those that are candidates for index regeneration.
  • 41. program dissection – ratiocheck.pl set up some variables two of these are templates for printing
  • 42. program dissection – ratiocheck.pl In line 3 above, a file is slurped, i.e., the entire file is read into an array via the <> mechanism.
  • 43. program dissection – ratiocheck.pl This is a more typical use of the split function. Here, $item is separated into two pieces at the “|” character.
  • 44. program dissection – ratiocheck.pl We want to check every database in alphabetical order. We are then calling the checkit subroutine for each database.
  • 45. program dissection – ratiocheck.pl The system function executes its string as an O.S. command. Here we are mailing a file to two different people.
  • 46. program dissection – ratiocheck.pl This subroutine takes 1 argument.
  • 47. program dissection – ratiocheck.pl Remember our generic templates? Here they are used as a format string for the sprintf function. $generic_path = &quot;/m1/voyager/%s/data/&quot;;
  • 48. program dissection – ratiocheck.pl The –s test returns a file’s size. (There are several dozen different –x file tests.)
  • 49. program dissection – ratiocheck.pl Compute the files’ size ratio with sufficient decimal places.
  • 50. program dissection – ratiocheck.pl \n means new line , loosely equivalent to a CR, or carriage return. Since we want to print the “%” character, we have to escape it with the “\” backslash.
  • 51. program dissection – ratiocheck.pl Here we have a hash reference… we are checking if the ratio is greater than the threshold for the current database.
  • 52. program dissection – ratiocheck.pl This is a busy printf statement… the alert text gets a string, a character, and a string embedded in it .
  • 53. program dissection – ratiocheck.pl The first argument is a string, which is the output of the sprintf statement, which outputs the threshold value for this database.
  • 54. program dissection – ratiocheck.pl The second argument is a character. We print the “%” character, whose ASCII value is 37.
  • 55. program dissection – ratiocheck.pl The third argument is a string. In this case, the string consists of 35 asterisks. A string followed by “xN” will occur N times.
  • 56. ratiocheck.pl, output Here’s what the output looks like:
  • 57. DBI stuff What is it and why might I want it? DBI is the DataBase Interface module for Perl. You will also need the specific DBD (DataBase Driver) module for Oracle. This enables Perl to perform queries against your Voyager database. Both of these should already be on your Voyager box.
  • 58. DBI stuff, how to You need four things to connect to Voyager: machine name your.machine.here.edu username your_username password your_password SID VGER (or LIBR)
  • 59. DBI stuff, how to $dbh is the handle for the database $sth is the handle for the query Create a query…then execute it. NOTE: SQL from Access will most likely NOT work here!
  • 60. DBI stuff, how to Get the data coming from your query.
  • 61. DBI stuff, how to Get the data coming from your query. You’ll need a Perl variable for each column returned in the query. Commonly a list of variables is used; you could also use an array.
  • 62. DBI stuff, how to Get the data coming from your query. You’ll need a Perl variable for each column returned in the query. Commonly a list of variables is used; you could also use an array. Typically, you get your data in a while loop, but you could have $var = $sth->fetchrow_array; when you know you’re getting a single value.
  • 63. DBI stuff, how to When you’re done with a query, you should finish it. This becomes important when you have multiple queries in succession. You can have multiple queries open at the same time. In that case, make the statement handles unique…$sth2, or $sth_patron. Finally, you can close your database connection.
  • 64. CPAN Comprehensive Perl Archive Network http://cpan.org You name it and somebody has probably written a Perl module for it, and you’ll find it here. There are also good Perl links here; look for the Perl Bookmarks link.
  • 65. CPAN Installing modules You need to be root for systemwide installation on Unix systems. On Windows machines, you’ll need to be administrator. You can install them “just for yourself” with a bit of tweaking, and without needing root access. If you’re not a techie, you’ll probably want to find someone who is, to install modules. Installing modules is beyond the scope of this presentation.
  • 66. Perl on your PC You can get Perl for your PC from ActiveState. They typically have two versions available; I recommend the newer one. Get the MSI version. Installation is easy and painless, but it may take some time to complete. A lot of modules are included with this distribution; many additional modules are available. Module installation is made easy via the Perl Package Manager (PPM). Modules not found this way will require manual installation, details of which are beyond the scope of this presentation.
  • 67. Date and Time in Perl, basic ### &quot;create&quot; today's date my ($sec, $min, $hour, $day, $month, $year, $wday, $yday, $isdst) = localtime; This gets the date and time information from the system.
  • 68. Date and Time in Perl, basic ### &quot;create&quot; today's date my ($sec, $min, $hour, $day, $month, $year, $wday, $yday, $isdst) = localtime; my $today = sprintf (&quot;%4.4d.%2.2d.%2.2d&quot;, $year+1900, $month+1, $day); This puts today’s date in “Voyager” format, 2006.04.26
  • 69. Date and Time in Perl The program, datemath.pl, is part of your handout. The screenshot below shows its output.
  • 70. Regular expressions, matching m/PATTERN/gi If the m for matching is not there, it is assumed. The g modifier means to find globally, all occurrences. The i modifier means matching case insensitive. Modifiers are optional; others are available.
  • 71. Regular expressions, substituting s/PATTERN/REPLACEWITH/gi The s says that substitution is the intent. The g modifier means to substitute globally, all occurrences. The i modifier means matching case insensitive. Modifiers are optional; others are available.
  • 72. Regular expressions, translating tr/SEARCHFOR/REPLACEWITH/cd The tr says that translation is the intent. The c modifier means translate whatever is not in SEARCHFOR. The d modifier means to delete found but unreplaced characters. Modifiers are optional; others are available.
  • 73. Regular expressions Look in the Perl book (see Resources) for an explanation on how to use regular expressions. You can look around elsewhere, at Perl sites, and in other books, for more information and examples. Looking at explained examples can be very helpful in learning how to use regular expressions. (I’ve enclosed some I’ve found useful; see Resources.)
  • 74. Regular expressions Very powerful mechanism. Often hard to understand at first glance. Can be rather obtuse and frustrating! If one way doesn’t work, keep at it. Most likely there is a way that works!
  • 75. Resources Advanced Perl Programming Learning Perl Perl in a Nutshell Programming Perl Perl Cookbook Perl Best Practices I use these two a lot Highly recommended once you’re experienced. These are all O’Reilly books.
  • 76. Resources CPAN http://cpan.org Active State Perl http://activestate.com/Products/Download/Download.plex?id=ActivePerl The files listed below are available at http://homepages.wmich.edu/~zimmer/files/eugm2006 datemath.pl some program code for math with dates snippet.grep various regular expressions I’ve found useful Plunging Into Perl.ppt this presentation
  • 77. Thanks for listening. Questions? [email_address] 269.387.3885 Picture © 2005 by Roy Zimmer