Help for this page

Select Code to Download


  1. or download this
    my $str = "123**abc******";
    
  2. or download this
    my @values = split(/\*\*/,$str);
    
    warn Dumper(\@values);
    
  3. or download this
    $VAR1 = [
              '123',
              'abc'
            ];
    
  4. or download this
    $VAR1 = [
              '123',
    ...
              '',
              ''
            ];