Search Tutorials
The Tutorials in this series are created in PERL 5.14.2 on Ubuntu 12.04. Perl (Practical Extraction and Reporting Language) is widely used open-source language. Read more
Foss : PERL - Bengali
Outline: Sample Perl program আমরা এখন পর্যন্ত শেখা মুখ্য বিষয়গুলি স্যাম্পল পার্ল প্রোগ্রামে সম্মিলিত করেছি এই প্রোগ্রাম একটি অঞ্চলের বিভিন্ন আবহাওয়া পূর্বাভাস রিপোর্টের আউটপুট দেবে ..
Intermediate

Foss : PERL - Bengali
Outline: পার্ল মডিউল লাইব্রেরী কমপ্রিহেনসিভ পার্ল আর্কাইভ নেটওয়ার্ক (CPAN) হল মডিউল লাইব্রেরী 1. ইউসার CPAN এ উপলব্ধ মডিউলের ব্যবহার করতে পারে 2. ইউসারের দ্বারা নির্মিত নতুন মডিউল..
Intermediate

Foss : PERL - Bengali
Outline: CPAN মডিউল ডাউনলোড করা 1. লিনাক্স OS: ডাউনলোড করার বিভিন্ন উপায় রয়েছে লিখুন cpan এবং এন্টার টিপুন এটি cpan প্রম্পট দেয় লিখুন install মডিউলের নাম 2. উইন্ডোজ OS: উইন্ডোজ..
Intermediate

Foss : PERL - Bengali
Outline: Perl এবং HTML 1. HTML পৃষ্ঠা বানাতে, পার্ল CGI মডিউল প্রদান করে যা প্রয়োজনীয় HTML ট্যাগের সাথে CGI স্ক্রিপ্ট বানায় 2. এখানে বিভিন্ন মেথড রয়েছে যা CGI মডিউল হেডার যোগ করতে, পৃ..
Intermediate

Foss : PERL - English
Outline: 1. Installation of Perl 5.14.2 on Ubuntu Linux Installing XAMPP in Linux (XAMPP is a cumulative package consisting of Apache, PERL, PHP and MySQL Packages is availabl..
Basic

Foss : PERL - English
Outline: Variables are used for storing values, like text strings, numbers or arrays All variables in PERL start with a $ sign symbol Declaring a variable in PERL: $var_name = value; e.g..
Basic

Foss : PERL - English
Outline: Comments in Perl Two types of comments - 1. Single Line 2. Multi Line Single Line comment starts with the symbol # Multi Line comment used to comment a chunk of cod..
Basic

Foss : PERL - English
Outline: for-foreach-Loop 1. for Loop for loop is used to execute a piece of code for certain number of times 2. for-each Loop for-each loop is used to iterate a condition over an a..
Basic

Foss : PERL - English
Outline: 1. while Loop while loop executes a block of code while a condition is true. 2. do-while loop do-while loop will always execute the piece of code at-least once. It will then..
Basic

Foss : PERL - English
Outline: if conditional statement is used to test some condition and if that condition is satisfied then execute the piece of code. if-else conditional statement is used to test some condi..
Basic

Foss : PERL - English
Outline: if-elsif-else conditional statement is used to check specific condition and if it is true execute the respective block else execute the default else block. switch is conditional c..
Basic

Foss : PERL - English
Outline: Perl provides 3 types of data structures. 1. Scalar This is the basic data structure in PERL. It is as good as defining variables in Perl. e.g $variable = 9; 2...
Basic

13.Arrays
Foss : PERL - English
Outline: 1. Getting Last index of array 2. Getting length of an array To get the length, add 1 to last index of an array Other way is use scalar function on array or a..
Basic

Foss : PERL - English
Outline: 1. push Add element at the end of an array 2. pop Remove element from the end of an array 3. unshift Add element at the start of an array ..
Basic

15.Hash in Perl
Foss : PERL - English
Outline: 1. Accessing element of a hash 2. Basic hash functions keys Returns keys of a hash values Returns values of a hash each Retrieve the..
Basic

Foss : PERL - English
Outline: 1. Simple function 2. Function with parameters 3. Function which return single value 4. Function which returns multiple values
Basic

Foss : PERL - English
Outline: Special Blocks 1. Begin This block executes at the compilation time once it is defined. Anything which needs to be included before execution of the rest of the code is wr..
Basic

Foss : PERL - English
Outline: Access Modifiers in PERL 1. private variable - my scope is in the block inside where it is declared 2. lexically scoped variables - local that means they get the tem..
Intermediate

Foss : PERL - English
Outline: Referencing: Create a reference by adding \ (backward slash) Demo of various examples Add, remove, access elements of array reference / hash reference in the script with example..
Intermediate

Foss : PERL - English
Outline: 1. Special variables have a predefined and special meaning in Perl. 2. These variables are denoted by usual variable indicator such as $, @, % along with punctuation chara..
Intermediate
