in reply to XML parsing

perl -nle 's/\|(.+?)\|/print $1/eg' < test.xml

Outputs:

IMSI_NUMBER MSISDN_NUMBER service MSISDN_NUMBER SCPID service_class promo_plan VMSMSISDN_NUM KI

However, if you need something more robust, you will want to check out one of the many XML modules such as XML::Simple.

Replies are listed 'Best First'.
Re^2: XML parsing
by arunshankar.c (Initiate) on Nov 05, 2012 at 14:11 UTC
    Thank you rjt for providing the one liner..