Presentation is loading. Please wait.

Presentation is loading. Please wait.

ファイルの読み込み #!/usr/bin/env perl #Perlスクリプトの指定 open(FILE, "food.txt");

Similar presentations


Presentation on theme: "ファイルの読み込み #!/usr/bin/env perl #Perlスクリプトの指定 open(FILE, "food.txt");"— Presentation transcript:

1 ファイルの読み込み #!/usr/bin/env perl #Perlスクリプトの指定 open(FILE, "food.txt");
# ファイル処理の開始 # ファイル名は、”food.txt” # ファイルハンドルはFILE while(<FILE>){ # 一行ずつ、最後まで読む print $_; # 読み込んだ一行を出力する } close FILE; # ファイル処理の終了

2 変数について $val = 150; print $val; $name = “Watson”; print $name;

3 If文 #!/usr/bin/perl open(FILE, “food.txt”); while(<FILE>){
if(length($_) > 10){ print $_;} } close FILE; if(条件){ 条件にあったときの処理 } elsif(2番目の条件){ 条件にあったときの処理 } else { どの条件にも合わなかったときの処理 }

4 while文 #!/usr/bin/perl $num = 0; while($num <= 5 ){ print “$num “;
$num ++; # $numの値を1つ増やす }

5 for文 #!/usr/bin/perl for($num = 0;$num <= 5;$num ++){
print “$num “; }


Download ppt "ファイルの読み込み #!/usr/bin/env perl #Perlスクリプトの指定 open(FILE, "food.txt");"

Similar presentations


Ads by Google