Sponsored Content
Full Discussion: XML parsing
Top Forums Shell Programming and Scripting XML parsing Post 302531170 by Shahul on Thursday 16th of June 2011 04:07:31 AM
Old 06-16-2011
Or Smilie

Code:
$ nawk '{gsub(/<parameter>/,"\n<parameter>") && gsub(/<[^>]*>/," ");print}' input.txt|sed -e '/</d' -e '/^$/d'
  151515  38
  151522  32769
  151510  ALCLA0A3F837
  151517  1
  151511  WILDCARD
  151518  166
  151519  13568
  151514  0
  151523  65535
  151512  3FE50754ADAA01
  151521  32769
  151520  65537
  151513  BVM4P10DRAI221EA
  151516  0
  11124  0
  151524  18469
  151525  0
  23001  1

Thanks
Sha
 

10 More Discussions You Might Find Interesting

1. Programming

XML parsing

Hi I want to take an XML file and transform it into a pipe-delimited format. What is the best tool to use for this? I have libxml2 which seems to be the best xml parser around. The xml file will have the following format. <Txn> <Date>120504</Date> <id>99</id> <Items> <Item>... (1 Reply)
Discussion started by: handak9
1 Replies

2. Shell Programming and Scripting

parsing xml

I want to use wget comment to parse an xml parse that exist in an online website. How can I connect it using shell script through Unix and how can I parse it?? (1 Reply)
Discussion started by: walnut
1 Replies

3. Shell Programming and Scripting

XML Parsing

Hi, Need a script to parse the following xml file content <tag1 Name="val1"> <abc Name="key"/> <abc Name="pass">*********</abc> </tag1> <tag2 Name="Core"> <Host Name="a.b.c"> <tag1 Name="abc"> <abc Name="ac">None</abc> ... (4 Replies)
Discussion started by: Mavericc
4 Replies

4. Shell Programming and Scripting

Parsing XML

Learned People, Hello ! Till today, for the most part, all of the tricky questions/situations that I encountered were already posted by other folks and all I had to do was peruse through these one at a time and I could find some sort of an answer and all I had to do was add some minor tweaks... (5 Replies)
Discussion started by: ManoharMa
5 Replies

5. UNIX for Advanced & Expert Users

XML Parsing

I had a big XML and from which I have to make a layout as below *TOTAL+CB | *CB+FX | CS |*IR | *TOTAL | -------------------------------------------------------------------------------------------------- |CB FX | | | | DMFXNY EMSGFX... (6 Replies)
Discussion started by: manas_ranjan
6 Replies

6. Shell Programming and Scripting

Parsing XML

I am trying to parse an xml file and trying to grab certain values and inserting them into database table. I have the following xml that I am parsing: <dd:service name="locator" link="false"> <dd:activation mode="manual" /> <dd:run mode="direct_persistent" proxified="false" managed="true"... (7 Replies)
Discussion started by: $criptKid617
7 Replies

7. Shell Programming and Scripting

XML: parsing of the Google contacts XML file

I am trying to parse the XML Google contact file using tools like xmllint and I even dived into the XSL Style Sheets using xsltproc but I get nowhere. I can not supply any sample file as it contains private data but you can download your own contacts using this script: #!/bin/sh # imports... (9 Replies)
Discussion started by: ripat
9 Replies

8. Shell Programming and Scripting

XML parsing

i have xml output in below format... <AlertsResponse> <Alert id="11216" name="fgdfg"> <AlertActionLog timestamp="1356521629778" user="admin" detail="Recovery Alert"/> </Alert> <Alert id="11215" name="gdfg <AlertActionLog timestamp="1356430119840" user=""... (12 Replies)
Discussion started by: vivek d r
12 Replies

9. Shell Programming and Scripting

XML Parsing :

HI I want to parse below file in to two output :- Input :- ?xml version="1.0" encoding="UTF-8"?> <bulkCmConfigDataFile xmlns:un="utranNrm.xsd" <configData dnPrefix="Undefined"> <xn:SubNetwork id="ONRM_ROOT_MO_R"> <xn:MeContext id="C136"> ... (3 Replies)
Discussion started by: asavaliya
3 Replies

10. Shell Programming and Scripting

XML parsing

I have an xml file where the format looks like below <SESSIONCOMPONENT REFOBJECTNAME ="pre_session_command" REUSABLE ="NO" TYPE ="Pre-session command"> <TASK DESCRIPTION ="" NAME ="pre_session_command" REUSABLE ="NO" TYPE ="Command" VERSIONNUMBER ="1"> ... (8 Replies)
Discussion started by: r_t_1601
8 Replies
QXmlSimpleReader(3qt)													     QXmlSimpleReader(3qt)

NAME
QXmlSimpleReader - Implementation of a simple XML reader (parser) SYNOPSIS
All the functions in this class are reentrant when Qt is built with thread support.</p> #include <qxml.h> Inherits QXmlReader. Public Members QXmlSimpleReader () virtual ~QXmlSimpleReader () virtual void setFeature ( const QString & name, bool value ) virtual bool parse ( const QXmlInputSource * input, bool incremental ) virtual bool parseContinue () DESCRIPTION
The QXmlSimpleReader class provides an implementation of a simple XML reader (parser). This XML reader is sufficient for simple parsing tasks. The reader: provides a well-formed parser; does not parse any external entities; can do namespace processing. Documents are parsed with a call to parse(). See also XML. MEMBER FUNCTION DOCUMENTATION
QXmlSimpleReader::QXmlSimpleReader () Constructs a simple XML reader with the following feature settings: <center>.nf </center> More information about features can be found in the Qt SAX2 overview. See also setFeature(). QXmlSimpleReader::~QXmlSimpleReader () [virtual] Destroys the simple XML reader. bool QXmlSimpleReader::parse ( const QXmlInputSource * input, bool incremental ) [virtual] Reads an XML document from input and parses it. Returns FALSE if the parsing detects an error; otherwise returns TRUE. If incremental is TRUE, the parser does not return FALSE when it reaches the end of the input without reaching the end of the XML file. Instead it stores the state of the parser so that parsing can be continued at a later stage when more data is available. You can use the function parseContinue() to continue with parsing. This class stores a pointer to the input source input and the parseContinue() function tries to read from that input souce. This means that you should not delete the input source input until you've finished your calls to parseContinue(). If you call this function with incremental TRUE whilst an incremental parse is in progress a new parsing session will be started and the previous session lost. If incremental is FALSE, this function behaves like the normal parse function, i.e. it returns FALSE when the end of input is reached without reaching the end of the XML file and the parsing cannot be continued. See also parseContinue() and QSocket. Examples: bool QXmlSimpleReader::parseContinue () [virtual] Continues incremental parsing; this function reads the input from the QXmlInputSource that was specified with the last parse() command. To use this function, you must have called parse() with the incremental argument set to TRUE. Returns FALSE if a parsing error occurs; otherwise returns TRUE. If the input source returns an empty string for the function QXmlInputSource::data(), then this means that the end of the XML file has been reached; this is quite important, especially if you want to use the reader to parse more than one XML file. The case of the end of the XML file being reached without having finished parsing is not considered to be an error: you can continue parsing at a later stage by calling this function again when there is more data available to parse. This function assumes that the end of the XML document is reached if the QXmlInputSource::next() function returns QXmlInputSource::EndOfDocument. If the parser has not finished parsing when it encounters this symbol, it is an error and FALSE is returned. See also parse() and QXmlInputSource::next(). void QXmlSimpleReader::setFeature ( const QString & name, bool value ) [virtual] Sets the state of the feature name to value: If the feature is not recognized, it is ignored. The following features are supported: <center>.nf </center> ** $Id: qt/tagreader.cpp 3.3.8 edited Jan 11 14:46 $ reader.setFeature( "http://xml.org/sax/features/namespace-prefixes", TRUE ); (Code taken from xml/tagreader-with-features/tagreader.cpp) See also feature() and hasFeature(). Example: xml/tagreader-with-features/tagreader.cpp. Reimplemented from QXmlReader. SEE ALSO
http://doc.trolltech.com/qxmlsimplereader.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qxmlsimplereader.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QXmlSimpleReader(3qt)
All times are GMT -4. The time now is 03:33 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy