You are viewing a single comment's thread. Return to all comments →
Perl
use List::Util qw( uniq ); BEGIN{$, = ";"}; my @allmatch; while(<>){ chomp; my @matches = m|<([^\s/]+?)[>\s]|g; push @allmatch, @matches; } my @res = uniq(sort(@allmatch)); print @res;
Seems like cookies are disabled on this browser, please enable them to open this website
Detect HTML Tags
You are viewing a single comment's thread. Return to all comments →
Perl