473,403 Members | 2,293 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,403 software developers and data experts.

how to replace a node innerText with a new string ?

Hello group,

When I run an XPATH query first as:

//*[contains(translate(.,\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\ ",
\"abcdefghijklmnopqrstuvwxyz\")

Then within a loop like:

foreach(XmlNode xnode in node.SelectNodes(s))

{

}

The program tries to find/locate the innetText of the node, which contains
the information user, has entered. The problem is the program considers a
huge block of xml body; as innertext at first stage and as the process goes
on (in loop) the innetText gets smaller and smaller and finally it returns
the word or string which base on that the query is submitted. I'm trying to
replace located string with a new string but don't know how to find out
which node is representing the one which should be replaced. Or which
InnerText is the one which, should be replaced.

Any suggestions?

Thanks




Nov 16 '05 #1
6 1126
C# Newbie,

Please note that if you have an XML section which looks
like this.

<Parent>
<Child>SomeText</Child>
</Parent>

Then the innerText of the Parent node witll b e the ENTIRE
Child node, like this

<Child>SomeText</Child>

Where as innerText for the Child node will be

SomeText

HTH,

//Andreas

--
ANDREAS HÅKANSSON
STUDENT OF SOFTWARE ENGINEERING
andreas (at) selfinflicted.org
"C# newbie" <it**************@yahoo.com> wrote in message news:#9**************@TK2MSFTNGP12.phx.gbl...
Hello group,

When I run an XPATH query first as:

//*[contains(translate(.,\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\ ",
\"abcdefghijklmnopqrstuvwxyz\")

Then within a loop like:

foreach(XmlNode xnode in node.SelectNodes(s))

{

}

The program tries to find/locate the innetText of the node, which contains
the information user, has entered. The problem is the program considers a
huge block of xml body; as innertext at first stage and as the process goes
on (in loop) the innetText gets smaller and smaller and finally it returns
the word or string which base on that the query is submitted. I'm trying to
replace located string with a new string but don't know how to find out
which node is representing the one which should be replaced. Or which
InnerText is the one which, should be replaced.

Any suggestions?

Thanks




Nov 16 '05 #2
C# newbie wrote:
Hello group,

When I run an XPATH query first as:

//*[contains(translate(.,\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\ ",
\"abcdefghijklmnopqrstuvwxyz\")

Then within a loop like:

foreach(XmlNode xnode in node.SelectNodes(s))

{

}

The program tries to find/locate the innetText of the node, which contains
the information user, has entered. The problem is the program considers a
huge block of xml body; as innertext at first stage and as the process goes
on (in loop) the innetText gets smaller and smaller and finally it returns
the word or string which base on that the query is submitted. I'm trying to
replace located string with a new string but don't know how to find out
which node is representing the one which should be replaced. Or which
InnerText is the one which, should be replaced.


Why do you want to do it this way?
It would be simpler to write the XPath to return the correct result in
the first place.

For example, if you want to find the following:

<?xml version="1.0"?>
<User_Sumbitted>
<Data>
<First>some text</First>
<Second>more text</Second>
<Data>
</User_Sumbitted>

just query:
string(/User_Sumbitted/Data/First/text()) - this will give you the
*text*, not the node.

If you want to replace do this:

XmlDocument xdoc = new XmlDocument();
xdoc.LoadXml(
@"<?xml version="1.0"?>"+
"<User_Sumbitted>"+
"<Data>"+
"<First>some text</First>"+
"<Second>more text</Second>"+
"<Data>"+
"</User_Sumbitted>";
XPathNavigator xnav = xdoc.CreateNavigator();
XPathNodeIterator it = xnav.Evaluate(@"/User_Submitted/Data/First/text()");
if(it.MoveNext())
it.Current.Value = "some new text";
xdoc.Save(System.StandardOutput);
Nov 16 '05 #3
Andreas you did point to a good issue thanks. Please let me know how can I find out the node only has "SomeText" not the whole <Child>SomeText</Child>

That would help me out with my current problem. I tried HasChildren but it's not what I was looking for!
I just want to work with <child> node which don't have children and replace the innterText of it.

I will appreciate it
Newbie
"Andreas Håkansson" <andreas (at) selfinflicted.org> wrote in message news:Ob**************@TK2MSFTNGP12.phx.gbl...
C# Newbie,

Please note that if you have an XML section which looks
like this.

<Parent>
<Child>SomeText</Child>
</Parent>

Then the innerText of the Parent node witll b e the ENTIRE
Child node, like this

<Child>SomeText</Child>

Where as innerText for the Child node will be

SomeText

HTH,

//Andreas

--
ANDREAS HÅKANSSON
STUDENT OF SOFTWARE ENGINEERING
andreas (at) selfinflicted.org
"C# newbie" <it**************@yahoo.com> wrote in message news:#9**************@TK2MSFTNGP12.phx.gbl...
Hello group,

When I run an XPATH query first as:

//*[contains(translate(.,\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\ ",
\"abcdefghijklmnopqrstuvwxyz\")

Then within a loop like:

foreach(XmlNode xnode in node.SelectNodes(s))

{

}

The program tries to find/locate the innetText of the node, which contains
the information user, has entered. The problem is the program considers a
huge block of xml body; as innertext at first stage and as the process goes
on (in loop) the innetText gets smaller and smaller and finally it returns
the word or string which base on that the query is submitted. I'm trying to
replace located string with a new string but don't know how to find out
which node is representing the one which should be replaced. Or which
InnerText is the one which, should be replaced.

Any suggestions?

Thanks




Nov 16 '05 #4
Yes, but here we have a different situation! the "text" I"m looking for,
could be any where within an xml file. so the code should search for it at
any possible place within the xml file.
but thank for your help.

"Ayende Rahien" <Ay****@nospam.com> wrote in message
news:e1**************@TK2MSFTNGP09.phx.gbl...
C# newbie wrote:
Hello group,

When I run an XPATH query first as:

//*[contains(translate(.,\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\ ",
\"abcdefghijklmnopqrstuvwxyz\")

Then within a loop like:

foreach(XmlNode xnode in node.SelectNodes(s))

{

}

The program tries to find/locate the innetText of the node, which contains the information user, has entered. The problem is the program considers a huge block of xml body; as innertext at first stage and as the process goes on (in loop) the innetText gets smaller and smaller and finally it returns the word or string which base on that the query is submitted. I'm trying to replace located string with a new string but don't know how to find out
which node is representing the one which should be replaced. Or which
InnerText is the one which, should be replaced.
Why do you want to do it this way?
It would be simpler to write the XPath to return the correct result in
the first place.

For example, if you want to find the following:

<?xml version="1.0"?>
<User_Sumbitted>
<Data>
<First>some text</First>
<Second>more text</Second>
<Data>
</User_Sumbitted>

just query:
string(/User_Sumbitted/Data/First/text()) - this will give you the
*text*, not the node.

If you want to replace do this:

XmlDocument xdoc = new XmlDocument();
xdoc.LoadXml(
@"<?xml version="1.0"?>"+
"<User_Sumbitted>"+
"<Data>"+
"<First>some text</First>"+
"<Second>more text</Second>"+
"<Data>"+
"</User_Sumbitted>";
XPathNavigator xnav = xdoc.CreateNavigator();
XPathNodeIterator it =

xnav.Evaluate(@"/User_Submitted/Data/First/text()"); if(it.MoveNext())
it.Current.Value = "some new text";
xdoc.Save(System.StandardOutput);

Nov 16 '05 #5
C# Newbie,

Why not rewrite your XPath query so it does not return <Child> tags
which has nested <Child> tags ? Kinda hard to say without knowing the
datamodel which your XML has.

HTH,

//Andreas

--
ANDREAS HÅKANSSON
STUDENT OF SOFTWARE ENGINEERING
andreas (at) selfinflicted.org
"C# newbie" <it**************@yahoo.com> wrote in message news:eR**************@TK2MSFTNGP12.phx.gbl...
Andreas you did point to a good issue thanks. Please let me know how can I find out the node only has "SomeText" not the whole <Child>SomeText</Child>

That would help me out with my current problem. I tried HasChildren but it's not what I was looking for!
I just want to work with <child> node which don't have children and replace the innterText of it.

I will appreciate it
Newbie
"Andreas Håkansson" <andreas (at) selfinflicted.org> wrote in message news:Ob**************@TK2MSFTNGP12.phx.gbl...
C# Newbie,

Please note that if you have an XML section which looks
like this.

<Parent>
<Child>SomeText</Child>
</Parent>

Then the innerText of the Parent node witll b e the ENTIRE
Child node, like this

<Child>SomeText</Child>

Where as innerText for the Child node will be

SomeText

HTH,

//Andreas

--
ANDREAS HÅKANSSON
STUDENT OF SOFTWARE ENGINEERING
andreas (at) selfinflicted.org
"C# newbie" <it**************@yahoo.com> wrote in message news:#9**************@TK2MSFTNGP12.phx.gbl...
Hello group,

When I run an XPATH query first as:

//*[contains(translate(.,\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\ ",
\"abcdefghijklmnopqrstuvwxyz\")

Then within a loop like:

foreach(XmlNode xnode in node.SelectNodes(s))

{

}

The program tries to find/locate the innetText of the node, which contains
the information user, has entered. The problem is the program considers a
huge block of xml body; as innertext at first stage and as the process goes
on (in loop) the innetText gets smaller and smaller and finally it returns
the word or string which base on that the query is submitted. I'm trying to
replace located string with a new string but don't know how to find out
which node is representing the one which should be replaced. Or which
InnerText is the one which, should be replaced.

Any suggestions?

Thanks




Nov 16 '05 #6
ok!
"Andreas Håkansson" <andreas (at) selfinflicted.org> wrote in message news:O6**************@TK2MSFTNGP11.phx.gbl...
C# Newbie,

Why not rewrite your XPath query so it does not return <Child> tags
which has nested <Child> tags ? Kinda hard to say without knowing the
datamodel which your XML has.

HTH,

//Andreas

--
ANDREAS HÅKANSSON
STUDENT OF SOFTWARE ENGINEERING
andreas (at) selfinflicted.org
"C# newbie" <it**************@yahoo.com> wrote in message news:eR**************@TK2MSFTNGP12.phx.gbl...
Andreas you did point to a good issue thanks. Please let me know how can I find out the node only has "SomeText" not the whole <Child>SomeText</Child>

That would help me out with my current problem. I tried HasChildren but it's not what I was looking for!
I just want to work with <child> node which don't have children and replace the innterText of it.

I will appreciate it
Newbie
"Andreas Håkansson" <andreas (at) selfinflicted.org> wrote in message news:Ob**************@TK2MSFTNGP12.phx.gbl...
C# Newbie,

Please note that if you have an XML section which looks
like this.

<Parent>
<Child>SomeText</Child>
</Parent>

Then the innerText of the Parent node witll b e the ENTIRE
Child node, like this

<Child>SomeText</Child>

Where as innerText for the Child node will be

SomeText

HTH,

//Andreas

--
ANDREAS HÅKANSSON
STUDENT OF SOFTWARE ENGINEERING
andreas (at) selfinflicted.org
"C# newbie" <it**************@yahoo.com> wrote in message news:#9**************@TK2MSFTNGP12.phx.gbl...
Hello group,

When I run an XPATH query first as:

//*[contains(translate(.,\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\ ",
\"abcdefghijklmnopqrstuvwxyz\")

Then within a loop like:

foreach(XmlNode xnode in node.SelectNodes(s))

{

}

The program tries to find/locate the innetText of the node, which contains
the information user, has entered. The problem is the program considers a
huge block of xml body; as innertext at first stage and as the process goes
on (in loop) the innetText gets smaller and smaller and finally it returns
the word or string which base on that the query is submitted. I'm trying to
replace located string with a new string but don't know how to find out
which node is representing the one which should be replaced. Or which
InnerText is the one which, should be replaced.

Any suggestions?

Thanks




Nov 16 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: C# newbie | last post by:
Hello group, When I run an XPATH query first as: //*[contains(translate(.,\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\", \"abcdefghijklmnopqrstuvwxyz\")
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.