Archive

Archive for the ‘indiaperl’ Category

Using Numbers and Strings in Perl

February 2nd, 2011 Contributor No comments

In Perl, numbers and strings are called scalars. Scalars that do not change during the lifetime of a program are known as constants or literals. Scalars that do change are known as variables. Operators do something with scalars, for example, add together the contents of two variables.
Literals/Constants
There are two types of literal:
* numeric literals, [...]

    Read More...

Create a Compound Interest Calculator in Perl

January 16th, 2011 Contributor No comments

Open a text editor, for example, NotePad, and enter the following lines of code:
#!/usr/bin/perl -w
print “Monthly deposit: “; # prompt for input
$deposit=; # get input from keyboard
chomp $deposit; # remove the newline character from the end of the variable
print “Interest rate (3, 4, 5.5, etc): “; # prompt for input
$interest=; # get input from [...]

    Read More...

What Perl Can Do For Your Website

December 20th, 2010 Contributor No comments

Perl programming language is a language which is ideal solution for creating dynamic web pages and also has the ability to perform system management task. Released in 1987, it was designed to provide efficiency and simplicity. There are many benefits in using Perl and this article will elaborate on that.
The first thing that comes [...]

    Read More...

Features of Perl Language

December 3rd, 2010 Contributor No comments

The overall structure of Perl derives broadly from C. Perl is procedural in nature, with variables, expressions, assignment statements, brace-delimited blocks, control structures, and subroutines.
Perl also takes features from shell programming. All variables are marked with leading sigils, which unambiguously identify the data type (for example, scalar, array, hash) of the variable in context. [...]

    Read More...

Linux, Apache, Mysql, PHP, and Perl

October 20th, 2010 Contributor No comments

With all of the available web hosting plans, now is the time to start building sites whether your goal is fun, education, profit or all of the above. The days of plain static HTML sites is past. Today’s servers feature access to programming languages and database capability to provide dynamic web pages with just [...]

    Read More...

India Perl : Using Perl and Regular Expressions

December 17th, 2009 Contributor No comments

Like many web content authors, over the past few years I’ve had many occasions when I’ve needed to clean up a bunch of HTML files that have been generated by a word processor or publishing package. Initially, I used to clean up the files manually, opening each one in turn, and making the same [...]

    Read More...

Perl Programming : Installing Perl

July 11th, 2009 admin No comments

To use the Perl programming language you must install a Perl interpreter. Depending on the operating system you are using, it is possible that the interpreter may be already installed. To see whether it is installed, go to a command prompt and enter:
perl -v
If you get a message like ‘command not found’ or ‘Bad [...]

    Read More...

OptiPerl is a Fully-Integrated Perl Developing Solution”

July 26th, 2007 admin No comments

OptiPerl will help you create CGI & console scripts in Perl, offline in Windows. It is a fully integrated visual developing environment and editor for creating, testing, debugging and running perl scripts, directly or through associated html documents.
Features include:
* Offline editing of Perl scripts in IDE.
* Complete emulation of a real server – scripts [...]

    Read More...
Categories: OptiPerl, indiaperl

What’s Wrong with Perl 5

July 18th, 2007 admin No comments

Perl 5 isn’t perfect, though, and some of its flaws are more apparent the closer Perl 6 comes to completion.
Perhaps the biggest imperfection of Perl 5 is its internals. Though much of the design is clever, there are also places of
obsolescence and interdependence, as well as optimizations that no one remembers, but no one [...]

    Read More...
Categories: Perl 5, indiaperl

What’s Right with Perl 5

July 18th, 2007 admin No comments

As Adam Turoff explained once, Perl has two subtle advantages: manipulexity and whipuptitude. It’s very important to be able
to solve the problem at hand simply and easily without languages and tools and syntax getting in your way. That’s
whipuptitude. Manipulexity is the ability to use simple tools and build a sufficiently complex solution to a [...]

    Read More...
Categories: Perl 5, indiaperl