in reply to Re^2: regex questionin thread regex question
my $s = 'abc*def*ghi'; my @words = ($s =~ /([^*]+)/g); [download]
my @words = ($s =~ /([^*]+)/g); [download]