Help for this page

Select Code to Download


  1. or download this
    @arr = qw(test1 @test2 @test3 test4 test5);
    
  2. or download this
    $str1 = join(',', grep {/^@/} @arr);
    $str2 = join(',', grep {/^[^@]/} @arr);