in reply to Re^4: Return string that starts and ends with specific characters
in thread Return string that starts and ends with specific characters
#!/usr/bin/perl # http://perlmonks.org/?node_id=1164776 use strict; use warnings; print "$1\n" while 'asdfgfhjkljjj' =~ /(?=(f.*?j))/g
|
|---|