Help for this page

Select Code to Download


  1. or download this
    for (@list){
        ### This will not match 'String' at the end of the line
        print if /String\s/;
    }
    
  2. or download this
    for (@list){
        print if /String\b/;
    }