in reply to Re^2: extract text between slashesin thread extract text between slashes
$ perl -le ' > $string = q{%/%/ISIN/US1252691001}; > @matches = $string =~ m{/(.*?)/}g; > print for @matches;' % $ [download]
Cheers,
JohnGG