Help for this page

Select Code to Download


  1. or download this
    grep { /^Julia_Roberts/ } @arr
    
  2. or download this
    grep { /^\Q$s\E/ } @arr; # regex with quoted interpolation
    
    # or
    
    grep { index $_, $s == 0 } @arr; # more efficient