The 10 Minutes to Learn does NOT include installation of tools needed to edit or run these scripts. Once these tools are installed, start your timer…
You may copy and paste the code to your own files and test it yourself. Expand on these basic concepts, one step at a time, to create more complex [...]
Metacharacters
These need to be escaped to be matched.
\ . ^ $ * + ? { } [ ] ( ) | Escape sequences for pre-defined character classes \d – a digit – [0-9] \D – a nondigit – [^0-9] \w – a word character (alphanumeric including underscore) – [a-zA-Z_0-9] \W – a nonword [...]
Declare a local variable called $mystring.
my $mystring;
Assign a value (string literal) to the variable.
$mystring = “Hello world!”;
Does the string contains the word “World”?
if($mystring =~ m/World/) { print “Yes”; }
No, it doesn’t. The binding operator
=~
with the match operator
m//
does a pattern search on
$mystring
and returns true [...]
Scalar variables are simple variables containing only one element–a string or a number. Strings may contain any symbol, letter, or number. Numbers may contain exponents, integers, or decimal values. The bottom line here with scalar variables is that they contain only one single piece of data. What you see is what you get with scalar [...]
A variable is defined by the ($) symbol (scalar), the (@) symbol (arrays), or the (%) symbol (hashes).
Here is what each type of variable should look like inside of a script.
definevariables.pl: #!/usr/bin/perl print “Content-type: text/html \n\n”; #HTTP HEADER $myname = “some_value”; @array = (“value00″,”value01″,”value02″); %hash = (“Quarter”, 25, “Dime”, 10, “Nickle”, 5); — [...]
Categories
- Accounts, Finance
- Architect,Interior Design
- Automobiles
- Banking, Financial Services
- BPO, KPO
- Construction, Engineering
- Consultants
- Content, Journalism
- Engineering Design
- Export, Import
- Fashion
- Feng Shui
- Gadgets
- Global, Climate
- Healthcare, Medical
- Hotels, Restaurants
- HR, Admin
- Insurance
- IT, Software Services
- IT- Hardware
- Management
- Marketing, Advertising
- Media, Entertainment
- NGO
- Other
- Pharma, Biotech
- Photography
- Recipe
- Retail
- Site Engineering
- Teaching, Education
- Telecom
- Travel
- Trekking and Mountaineering
- TV, Films
- Web, Graphic Design
Calendar
February 2012 M T W T F S S « Jul 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
Add Widgets (Secondary Sidebar)
This is your Secondary Sidebar. Edit this content that appears here in the widgets panel by adding or removing widgets in the Secondary Sidebar area.
