「Ruby」nextでループの処理をするサンプル
書式
配列名.each do |変数名|
使用例
#!/usr/bin/ruby # -*- coding: UTF-8 -*- cftArr = [11, 22,33, 44, 55, 66, 77] cftArr.each do |t| next if t == 55 puts t end
実行結果
>ruby test.rb
11
22
33
44
66
77
Coding Changes the World
書式
配列名.each do |変数名|
使用例
#!/usr/bin/ruby # -*- coding: UTF-8 -*- cftArr = [11, 22,33, 44, 55, 66, 77] cftArr.each do |t| next if t == 55 puts t end
実行結果
>ruby test.rb
11
22
33
44
66
77