- or download this
perl -Mre=debug -e '@rr = "efgmnoxyz" =~ /(?=(\w\w\w))/g'
- 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"
- 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"