01 Data Types in Perl and Pattern Matching
01 Data Types in Perl and Pattern Matching
M.Sc. - II Bioinformatics
G. N. Khalsa College
5/21/2019
2
CONTENTS
Introduction
Basic Data Types
Scalars
Arrays of Scalars
Hashes of Scalars
Pattern Matching
References
5/21/2019
3
INTRODUCTION
5/21/2019
4
BASIC DATA TYPES IN PERL
5/21/2019
5
5/21/2019
6
SCALARS
5/21/2019
7
5/21/2019
8
ARRAYS OF SCALARS
5/21/2019
9
5/21/2019
10
HASHES OF SCALARS
5/21/2019
11
5/21/2019
12
PATTERN MATCHING
5/21/2019
Concepts of Regular Expressions
$bar = "foo";
if ($bar =~ /zoo/){
print "Second time is matching\n";
}else{
print "Second time is not matching\n";
}
17
5/21/2019
18
REFERENCES
5/21/2019
19
THANK YOU!
5/21/2019