Mohd Mohtashim has Published 251 Articles

Multiline Strings in Perl

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 09:12:15

1K+ Views

If you want to introduce multiline strings into your programs, you can use the standard single quotes as below −Example Live Demo#!/usr/bin/perl $string = 'This is a multiline string'; print "$string";OutputThis will produce the following result −This is a multiline stringYou can use "here" document syntax as well to store or ... Read More

Perl String Scalars

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 08:19:14

197 Views

The following example demonstrates the usage of various types of string scalars. Notice the difference between single-quoted strings and double-quoted strings −Example Live Demo#!/usr/bin/perl $var = "This is string scalar!"; $quote = 'I m inside single quote - $var'; $double = "This is inside single quote - $var"; $escape = "This ... Read More

Perl Numeric Scalars

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 08:16:38

121 Views

A scalar is most often either a number or a string. Following example demonstrates the usage of various types of numeric scalars −Example Live Demo#!/usr/bin/perl $integer = 200; $negative = -300; $floating = 200.340; $bigfloat = -1.2E-23; # 377 octal, same as 255 decimal $octal = 0377; # FF hex, also ... Read More

What are Perl Scalars?

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 08:13:29

121 Views

A scalar is a single unit of data. That data might be an integer number, floating-point, a character, a string, a paragraph, or an entire web page.Here is a simple example of using scalar variables −Example Live Demo#!/usr/bin/perl $age = 25;                # An integer ... Read More

Perl Variable Context

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 08:11:25

290 Views

Perl treats the same variable differently based on Context, i.e., the situation where a variable is being used. Let's check the following example −Example Live Demo#!/usr/bin/perl @names = ('John Paul', 'Lisa', 'Kumar'); @copy = @names; $size = @names; print "Given names are : @copy"; print "Number of names are : ... Read More

Perl Hash Variables

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 08:08:19

185 Views

A hash is a set of key/value pairs. Hash variables are preceded by a percent (%) sign. To refer to a single element of a hash, you will use the hash variable name followed by the "key" associated with the value in curly brackets.Here is a simple example of using ... Read More

Perl Array Variables

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 08:05:52

174 Views

An array is a variable that stores an ordered list of scalar values. Array variables are preceded by an "at" (@) sign. To refer to a single element of an array, you will use the dollar sign ($) with the variable name followed by the index of the element in ... Read More

Perl Scalar Variables

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 08:03:30

149 Views

A scalar is a single unit of data. That data might be an integer number, floating-point, a character, a string, a paragraph, or an entire web page. Simply saying it could be anything, but only a single thing.Here is a simple example of using scalar variables −Example Live Demo#!/usr/bin/perl $age = ... Read More

Creating Variables in Perl

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 08:01:10

115 Views

Perl variables do not have to be explicitly declared to reserve memory space. The declaration happens automatically when you assign a value to a variable. The equal sign (=) is used to assign values to variables.Keep a note that this is mandatory to declare a variable before we use it ... Read More

What are Perl String Literals?

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 07:58:55

558 Views

Strings are sequences of characters. They are usually alphanumeric values delimited by either single (') or double (") quotes. They work much like UNIX shell quotes where you can use single-quoted strings and double-quoted strings.Double-quoted string literals allow variable interpolation, and single-quoted strings are not. There are certain characters when ... Read More

Advertisements