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: Including Files or modules in Perl program আমরা নিম্ন মেথড ব্যবহার করে পার্ল মডিউল্স বা ফাইল্স অন্তর্ভুক্ত করতে পারি: 1. do: এই সোর্স কোডকে অন্য ফাইল্স থেকে উপস্থিত স্ক্রিপ্ট..
Outline: Sample Perl program আমরা এখন পর্যন্ত শেখা মুখ্য বিষয়গুলি স্যাম্পল পার্ল প্রোগ্রামে সম্মিলিত করেছি এই প্রোগ্রাম একটি অঞ্চলের বিভিন্ন আবহাওয়া পূর্বাভাস রিপোর্টের আউটপুট দেবে ..
Outline: পার্ল মডিউল লাইব্রেরী কমপ্রিহেনসিভ পার্ল আর্কাইভ নেটওয়ার্ক (CPAN) হল মডিউল লাইব্রেরী 1. ইউসার CPAN এ উপলব্ধ মডিউলের ব্যবহার করতে পারে 2. ইউসারের দ্বারা নির্মিত নতুন মডিউল..
Outline: CPAN মডিউল ডাউনলোড করা 1. লিনাক্স OS: ডাউনলোড করার বিভিন্ন উপায় রয়েছে লিখুন cpan এবং এন্টার টিপুন এটি cpan প্রম্পট দেয় লিখুন install মডিউলের নাম 2. উইন্ডোজ OS: উইন্ডোজ..
Outline: Perl এবং HTML 1. HTML পৃষ্ঠা বানাতে, পার্ল CGI মডিউল প্রদান করে যা প্রয়োজনীয় HTML ট্যাগের সাথে CGI স্ক্রিপ্ট বানায় 2. এখানে বিভিন্ন মেথড রয়েছে যা CGI মডিউল হেডার যোগ করতে, পৃ..
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..
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..
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..
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..
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..
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..
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..
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...
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..
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 ..
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..
Outline: 1. Simple function 2. Function with parameters 3. Function which return single value 4. Function which returns multiple values
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..
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..
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..