Help for this page

Select Code to Download


  1. or download this
    <?xml version="1.0" encoding="UTF-8"?>
    
    ...
        <MeasurementUnit>inch1200</MeasurementUnit>
        </Description>
        </alto>
    
  2. or download this
    use XML::LibXML;
    $xml = 'test.xml';
    ...
    $v = $doc->findvalue('/alto/Description/MeasurementUnit');
    print "value\t".$v;
    }