About 2,870 results
Open links in new tab
  1. Perl Tutorial

    Perl used to be the most popular web programming language due to its text manipulation capabilities and rapid development cycle. Perl is widely known as "the duct-tape of the Internet".

  2. A Perl script is a text file, which keeps perl code in it and it can be executed at the command line by invoking the interpreter on your application, as in the following:

  3. Perl - Quick Guide - Online Tutorials Library

    Perl has three basic data types: scalars, arrays of scalars, and hashes of scalars, also known as associative arrays. Here is a little detail about these data types.

  4. Perl - Introduction - Online Tutorials Library

    Perl is a general-purpose programming language originally developed for text manipulation and now used for a wide range of tasks including system administration, web development, …

  5. Perl - Syntax Overview - Online Tutorials Library

    Perl borrows syntax and concepts from many languages: awk, sed, C, Bourne Shell, Smalltalk, Lisp and even English. However, there are some definite differences between the languages. …

  6. Perl Cheatsheet - Online Tutorials Library

    The Perl Cheatsheet provides a quick reference to all the fundamental topics. This open-source language performs various tasks such as text processing, web development, networking, and …

  7. Perl - Regular Expressions - Online Tutorials Library

    Standard Perl ranges can also be used, allowing you to specify ranges of characters either by letter or numerical value. To change the case of the string, you might use the following syntax …

  8. Perl - File I/O - Online Tutorials Library

    The basics of handling files are simple: you associate a filehandle with an external entity (usually a file) and then use a variety of operators and functions within Perl to read and update the data …

  9. Perl - Special Variables - Online Tutorials Library

    There are some variables which have a predefined and special meaning in Perl. They are the variables that use punctuation characters after the usual variable indicator ($, @, or %), such …

  10. Perl - Subroutines - Online Tutorials Library

    A Perl subroutine or function is a group of statements that together performs a task. You can divide up your code into separate subroutines. How you divide up your code among different …