1 / 23

Perl Training Week 1 CS110 November 2008

Use of Strings and Print. Perl Training Week 1 CS110 November 2008. Agenda. Print format and usage Difference between single and double quotes Special Characters Quoting Functions Here Documents Putting two strings together String Manipulation String subtraction String Transformations

uma
Download Presentation

Perl Training Week 1 CS110 November 2008

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Use of Strings and Print Perl Training Week 1CS110 November 2008

  2. Agenda • Print format and usage • Difference between single and double quotes • Special Characters • Quoting Functions • Here Documents • Putting two strings together • String Manipulation • String subtraction • String Transformations • Getting information about a string • Homework!!!

  3. Knowledge Assumptions • You have access to a perl installation(usually /usr/bin/perl or /usr/local/bin/perl) • All text after a # to the end of the line is a comment • Variables in Perl are created by $var_name = value;

  4. Print format and usage Basic Syntax: print “This is my string\n”; print tells Perl to print something \n is a new line feed

  5. Print format and usage (cont.) Hello World Program: #!/usr/bin/perl print “Hello World\n”;

  6. Difference between Single and Double Quotes • Single quotation marks do not interpret, but double quotation marks do $tmp = “World”; print 'Hello $tmp\n'; # prints Hello $tmp print “Hello $tmp\n”; # prints Hello World

  7. Special Characters • Some characters can't be typed in regular text \n New Line \r Carriage Return \t Tab Character \f Formfeed character \b Backspace character \v Vertical Tab \a Bellor beep \e Escape character \n and \t are used frequently. These may not have the same functionality on all systems.

  8. Special Characters (cont.) • Examples print “This is line one\n This is line two\n”; print “This is line one\n\t This line is indented\n”; print “How do you print \\\'s?\n”; print “The total is \$5.73 please\n”; $shout = “Help Me”; print “And then he shouted \”$shout\” very loudly\n”;

  9. Functions for Quoting Text • The q// function quotes with single quotes, the qq// function quotes with double quotes $tmp = 'This isn\'t a Java class, I\'m sure.'; is the same as $tmp = q/This isn't a Java class, I'm sure/; Isn't that easier? Note: qx// is closely related. It interprets any variables, then goes to the system and executes the command, returning the resulting text So $tmp = qx/whoami/; print “$tmp\n”; would print who you're logged in as

  10. Here Documents • If you have a lot to say, it can get monotonous to say the following: print “This is the first line\n”; print “This is the second line\n”; [...] print “This is the 400th line\n”; • Instead, use a Here document (called a here document based on old UNIX terminology): print <<'EOL'; This is the first line This is the second line [...] This is the 400th line EOL Note: If you put tabs into the Here document, they're printed as tabs automatically

  11. Putting Strings together • Concatenation operator is “.” $tmp = “Hello”; $tmp2 = “World”; $tmp3 = $tmp . $tmp2; print “$tmp3\n”; Why does this print out “HelloWorld” instead of “Hello World”?

  12. Putting Strings together (cont.) • We forgot to add a space $tmp = “Hello”; $tmp2 = “World”; $tmp3 = $tmp . “ “ . $tmp2 . “\n”; print “$tmp3\n”;

  13. String Multiplication • Ever wanted to print the string “ha ha ha ha ha ha ha ha ha ha”? $tmp = “ha”; print “$tmp”x10; print “\n”;

  14. String Subtraction • Used to get rid of data at the end of the line (line feeds or characters) $tmp = “Hellox”; $value = chop($tmp); print “$tmp\n”; # prints “Hello” print “$value\n”; # prints “x” (the character removed from the string) To remove line feeds, it is easier/better to use chomp because chomp knows how many characters to remove (some computers have a two-character line ending, some have one)Chomp has the same syntax as chop (but only removes line feeds, not characters)

  15. String Transformations • lc, uc, lcfirst and ucfirst functions $name = “jAsOn”; print lc($name); # prints “jason” print uc($name); # prints “JASON” print lcfirst($name); # prints “jAsOn” print ucfirst($name); # prints “JAsOn”

  16. Getting information from strings • length • print length (“Hello World”); # prints 11 • Chr • print chr(35); # prints the “#” symbol • print chr(65); # prints “A” • ord • print ord('A'); # prints 65 • print ord('#'); # prints 35

  17. Homework Problems #1 & #2 • Create a program that will print out the current login id's of all current users of a system • Print the following strings: • The ' quotes are easy as the “ to use • $1,000,000 is a lot of money • Countdown: 10... 9... 8... 7... 6... 5... 4... 3... 2... 1... Blastoff!!!

  18. Homework Problems #3, #4, #5 • Print the following string backwards • I like perl • Print the length of 5 strings that you make up • Print a HTML document that says Hello World (Use a HERE document)

  19. Bonus Homework Problem • Create a program that displays the character tables (numbers 33-126) • Use the form 33=! 34=” 35=# • Create another table that does the opposite • ! = 33 “ = 34 # = 35 • For loop construct is as follows: for($i = 0; $i < = 10; $i++) { print “$i is $i\n”; }

  20. Printing a string backwards • #!/usr/bin/perl • $tmp = “I like perl”; • for($i=length($tmp); $i > 0; $i--) • { • $letter = chop($tmp); • print $letter; • } • print “\n”;

  21. Input and Output • Create a program that displays a number input from the user: #!/usr/bin/perl print "Enter your number:\n"; $tmp = <STDIN>; chomp($tmp); print "You gave me $tmp \n"

  22. Graphics Files .svg #!/usr/bin/perl $tmp = <STDIN>; chomp($tmp); #print header for SVG file print<<'EOL'; <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width='300px' height='300px'> <title>Small SVG example</title> EOL #include a circle with size from input print " <circle cx='120' cy='150' r=\'$tmp\' style='fill: gold;'> </circle> \n"; print '</svg>';

  23. One-Eye Graphic #!/usr/bin/perl $c1 = <>; chomp($c1); $c2 = <>; chomp($c2); #print header for SVG file print<<'EOL'; <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width='300px' height='300px'> <title>Small SVG example</title> EOL #include one circle with size from first input print " <circle cx='120' cy='150' r=\'$c1\' style='fill: gold;'> </circle> \n"; #include a circle with size from second input print " <circle cx='130' cy='160' r=\'$c2\' style='fill: red;'> </circle> \n"; print '</svg>'; Homework #6 : Create matching eye

More Related