The most brutal way is:
use strict;use warnings;use feature 'say';my $text = '<title> hello <name> hi </name> <street> id </street> this is xml file </title>' ;$text =~ s|<.+?>||g;say "Text |$text|";
But, as you probably know, is not ok to parse html with regex.