文字列の分割
split関数を使います。
use strict; use warnings; use v5.10; my $str = "a,b,c"; my @items = split /,/, $str; say $items[0]; # a say $items[2]; # c $str = "a::b::c"; @items = split /::/, $str; say $items[0]; # a say $items[2]; # c
関連項目
・split関数・CSVの値取得
・文字列の連結
・部分文字列の取得