Perl Learning Four: statements

Source: Internet
Author: User

Statement:
If/unless

While/foreach/do. While/for

1. Summary of true value of expression
Any expression has a true or false value: logical, String, list, file

2.if

if (expression1) {

statements;

}

else if (expression2) {

statements;

}

Else
{

statements;

}

3.unless (expression1)

{
Statement

}

4.while (expression1)
{

statements;

}

5.do{
statements;
}
while (expression1)

6.untile (expression1)
{

statements;

}

7.do
{
statements;
}
Untile (expression1)

8.for (EXPR1;EXPR2;EXPR3)
{
statements;
}

9.foreach $w (list, array) {statement}
$w Rich Meaning

General form:


foreach $a (@a) {}


foreach $a (1, 2, 3, 4) {}


foreach $k (keys%h) {}


foreach $a (@a) {}, loop variable default is $_


Print $_ variable value for printing

Perl Learning Four: statements

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.