#!/usr/bin/perl use strict; use XML::Twig; my $t= XML::Twig->new(); $t->parsefile('../../xml_files_windows/parameterEntity_core.xml', ParseParamEnt => 1); my $root = $t->root; my $content = $root->first_child->text; print $content;