split(/pattern/, strings)
ex)
host# cat sample.pl #!/usr/bin/perl use strict; my $str = "aa bb cc"; my @list = split(/ /, $str); my $num = @list; my $i; for ( $i = 0; $i < $num; $i++) { print "$i: $list[$i]\n"; } host# ./sample.pl 0: aa 1: bb 2: cc
+ Operating System - Linux - FreeBSD - Solaris - Windows - Macintosh - Virtualization + Middleware - High Availability - Web - Mail - Database - FileTransfer - Management - Other Software - Library - Tool + Application + Network + Storage + Cloud + Protocol + Program + Others
Today: 1 Yesterday: 1 Total: 2946
MenuEdit