Help for this page

Select Code to Download


  1. or download this
    perl -Mre=debug -e '@rr = "efgmnoxyz" =~ /(?=(\w\w\w))/g'
    
  2. or download this
    # perl -Mre=debug -e '@matches = "efgmnoxyz" =~ /(\w\w\w)/g' 2>&1 | gr
    +ep 'Matching REx'
    Matching REx "(\w\w\w)" against "efgmnoxyz"
    Matching REx "(\w\w\w)" against "mnoxyz"
    Matching REx "(\w\w\w)" against "xyz"
    
  3. or download this
    # perl -Mre=debug -e '@matches = "efgmnoxyz" =~ /(?=(\w\w\w))/g' 2>&1 
    +| grep 'Matching REx'
    Matching REx "(?=(\w\w\w))" against "efgmnoxyz"
    ...
    Matching REx "(?=(\w\w\w))" against "noxyz"
    Matching REx "(?=(\w\w\w))" against "oxyz"
    Matching REx "(?=(\w\w\w))" against "xyz"