Quantcast
Channel: Extracting only the values of xml removing the xml tag - Stack Overflow
Viewing all articles
Browse latest Browse all 5

Answer by Tudor Constantin for Extracting only the values of xml removing the xml tag

$
0
0

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.


Viewing all articles
Browse latest Browse all 5

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>