http://qs1969.pair.com?node_id=990

The Basic Arithmetic Opertators

ExampleTypeResult
$a+$bAdditionSum of $a and $b
$a-$bSubtractionResult of $b subtracted from $a
$a*$bMultiplicationProduct of $a and $b
$a/$bDivisionResult of $a divided by $b
$a%$bModulusRemainder when $a is divided by $b
$a**$bExponentiation$a to the power of $b


String Operators
To prevent confusion strings have their own operators. Perl has its own addition and mulitply operators for strings. These operators are . and x respectively. We'll show you how these work compared to their arithmetic counterparts.
$a=2; $a=3; print $a+$b #arithmetic operator prints 5 print $a.$b #string operator prints 2 plus the three or 23 print $a*$b #arithmetic operator prints 6 print $a x $b #string operators prints $a $b times or 2 three times. i +e 222


Assignment Operators

Assignment simply set values on the left side of a = to what is on the right side. This works for both strings and numbers in Perl. You can speed an assignment like $a=$a*3; by using a handy shortcut used in C and C++. You can simplify variable=variable operator expression to variable operator=expression. We'll demonstrate this with some quick examples.
$a=3; $b="x"; $c=4; $a*=3; #$a=$a*3; $a now equal to 9; $a/=3; #$a=$a/3; $a (9) divided by three which equals 3; $a+=2; #$a=$a+2; $a is now equal to 5; $a-=2; #$a=$a-2; $a is now equal to 3; $b x=3; #$b=$b x $3 $b is now equal to "xxx"; $b .="33"; #b=$b."33" $b is now equal to "xxx33";

Another assignment operator often used is ||= which sets a variable equal to a value if the value isn't already set.

Comparison Operators
TypeNumericString
Greater Than>gt
Less Than<lt
Equal to==eq
Not equal!=ne
Less than or equal to<=le
Greater than or equal to>=ge

Another comparison operator is the <=> operator which returns -1 if the second term is greater, 1 if the first term is greater and 0 if the terms are equal. The string equivalent of <=> is cmp.

Autoincrement and Autodecrement operators These operators simply add or subtract one from a given variable. If the operator comes before the variable the value of the variable after the operation is returned. If the operation comes after the variable the value before the operation is returned. For example
$a=1; print $a++; #prints a as one then adds 1 to it print $a; #now $a is 2 print ++$a; #adds one to $a and then prints its value which is now 3; print $a--; #prints 3 then subtracts one from $a;


Logical Operators
ExamplesShort VersionTextual VersionMeaning
$a and $b; $a && b&&andreturns true if $a and $b are both defined and nonzero
$a or $b; $a||$b ||orreturns true if either $a or $b is defined and nonzero
!$a; not $a!notreturns the opposite of what an expression would otherwise


Note those operators are useful for controlling execution based on the way short-circuiting occurs. If you want something to happen only if the first condition isn't met you can use an or.

$a or print '$a is notdefined or is equal to zero';

You can also use an and to allow something to execute only if the first criteria evaluates to 0;


$isMonday and print "Today is Monday\n";


If you want to find ALL the information on ALL the operators here's your place