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 - Manipuri
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..
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..
Outline: File Handling 1. Open a File 2. Open a File in Read Mode 3. Open a File in Write Mode 4. Open a File in Append Mode 5. Close the FileHandle
Outline: Exception and error handling When an error occurs, exception and error handling helps to recover the program. Methods used in Perl: 1. warn() 2. die() 3. eval()
Outline: Including Files or modules in Perl program We can include the Perl modules or files by using the following methods. 1. do: It includes the source code from other files into t..
Outline: Sample Perl program We have included all the major topics we covered so far in this sample program. This program will give the output of various weather forecast reports of a..
Outline: Perl Module Library Comprehensive Perl Archive Network (CPAN) is the library of modules. 1. User can make use of the existing modules available in CPAN 2. New modules crea..
Outline: Downloading CPAN module 1. Linux OS: There are several ways to download. Type cpan and press Enter. This gives us cpan prompt. Type install module name. 2. Windows OS: W..
Outline: Perl and HTML 1. To create HTML pages, Perl provides CGI module which creates CGI script with require HTML tags. 2. There are different methods which CGI modules provide to a..
Foss : PERL - Marathi
Outline: 1. पर्ल 5.14.2 चे उबंटु लिनक्सवर इन्स्टॉलेशन करणे. लिनक्सवर XAMPP इन्स्टॉल करणे. (XAMPP हे Apache, PERL, PHP आणि MySQL पॅकेजेसचे लिनक्ससाठी उपलब्ध एकत्रित पॅकेज आहे.) ..
Outline: वेरियबल्स चा उपयोग व्हॅल्यू,टेक्स्ट स्ट्रिंग्ज, नंबर्स किंवा ऍरे संचित करण्यासाठी केला जातो. सर्व पर्लमधील वेरियबल्स $(डॉलर ) चिन्हाने सुरू होतात. पर्लमधील वेरियबल्स घोषित करणे..
Outline: पर्लमधील कॉमेंटस कॉमेंटस चे दोन प्रकार - 1. सिंगल लाइन 2. मल्टि लाइन सिंगल लाइन कॉमेंट ह्यश # चिन्हाने सुरू होतात. कोड चा मोठा भाग कॉमेंट करण्यासाठी मल्टी लाइन कॉमेंट वापरता..
Outline: फॉर आणि फॉर-इच-लूप 1. फॉर लूप काही वेळा कोड चा भाग कार्यान्वित करण्यासाठी फॉर्र लूप चा वापर होतो . 2. फॉर-इच लूप अरे वर कंडीशन वारं वार करण्यासाठी फॉर ईच ल..
Outline: 1. व्हाईल लूप कंडिशन true (ट्रु) असल्यास व्हाईल लूप कोडचा ब्लॉक कार्यान्वित करतो . 2. डू-व्हाईल लूप डू-व्हाईल लूप नेहमी कोडचा भाग किमान एकदा तरी कार्यान्वित करतो..
Outline: If कंडीशन चा वापर काही कंडीशन तपासण्यासाठी होतो. जर ती कंडीशन ट्रू असेल तर कोड कार्यान्वित होतो. If else कंडीशन चा वापर काही कंडीशन तपासण्यासाठी होतो. जर ती कंडीशन ट्रू असेल..
Outline: if-elsif-else कंडिशनल स्टेटमेंट हे विशिष्ट कंडिशन तपासण्यासाठी वापरले जाते. कंडिशन ट्रु असल्यास संबंधित ब्लॉक कार्यान्वित केला जातो. अन्यथा डिफॉल्ट else ब्लॉक कार्यान्वित केला जात..
Outline: पर्ल तीन प्रकारचे डेटा स्ट्रक्चर्स प्रदान करते. 1. स्केलर हा पर्लमधील मूलभूत डेटा स्ट्रक्चर आहे. हे पर्लमधे व्हेरिएबल घोषित करण्याप्रमाणेच आहे. उदाहरणार्थ $varia..
Outline: ऍरे हे पर्लमधे उपलब्ध असलेले एक डेटा स्ट्रक्चर आहे. पर्लमधील ऍरे घटक म्हणून कोणत्याही प्रकारचा डेटा संचित करू शकतात. ऍरे मधील घटक काढले किंवा वाढवले असता त्याची लांबी कमी/जास्त ..