473,986 Members | 1,530 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to replace a node innerText with a new string ?

Hello group,

When I run an XPATH query first as:

//*[contains(transl ate(.,\"ABCDEFG HIJKLMNOPQRSTUV WXYZ\",
\"abcdefghijklm nopqrstuvwxyz\" )

Then within a loop like:

foreach(XmlNode xnode in node.SelectNode s(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 8644
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.o rg
"C# newbie" <it************ **@yahoo.com> wrote in message news:#9******** ******@TK2MSFTN GP12.phx.gbl...
Hello group,

When I run an XPATH query first as:

//*[contains(transl ate(.,\"ABCDEFG HIJKLMNOPQRSTUV WXYZ\",
\"abcdefghijklm nopqrstuvwxyz\" )

Then within a loop like:

foreach(XmlNode xnode in node.SelectNode s(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(transl ate(.,\"ABCDEFG HIJKLMNOPQRSTUV WXYZ\",
\"abcdefghijklm nopqrstuvwxyz\" )

Then within a loop like:

foreach(XmlNode xnode in node.SelectNode s(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_Sumbitte d>"+
"<Data>"+
"<First>som e text</First>"+
"<Second>mo re text</Second>"+
"<Data>"+
"</User_Sumbitted> ";
XPathNavigator xnav = xdoc.CreateNavi gator();
XPathNodeIterat or it = xnav.Evaluate(@ "/User_Submitted/Data/First/text()");
if(it.MoveNext( ))
it.Current.Valu e = "some new text";
xdoc.Save(Syste m.StandardOutpu t);
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.o rg> wrote in message news:Ob******** ******@TK2MSFTN GP12.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.o rg
"C# newbie" <it************ **@yahoo.com> wrote in message news:#9******** ******@TK2MSFTN GP12.phx.gbl...
Hello group,

When I run an XPATH query first as:

//*[contains(transl ate(.,\"ABCDEFG HIJKLMNOPQRSTUV WXYZ\",
\"abcdefghijklm nopqrstuvwxyz\" )

Then within a loop like:

foreach(XmlNode xnode in node.SelectNode s(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******** ******@TK2MSFTN GP09.phx.gbl...
C# newbie wrote:
Hello group,

When I run an XPATH query first as:

//*[contains(transl ate(.,\"ABCDEFG HIJKLMNOPQRSTUV WXYZ\",
\"abcdefghijklm nopqrstuvwxyz\" )

Then within a loop like:

foreach(XmlNode xnode in node.SelectNode s(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_Sumbitte d>"+
"<Data>"+
"<First>som e text</First>"+
"<Second>mo re text</Second>"+
"<Data>"+
"</User_Sumbitted> ";
XPathNavigator xnav = xdoc.CreateNavi gator();
XPathNodeIterat or it =

xnav.Evaluate(@ "/User_Submitted/Data/First/text()"); if(it.MoveNext( ))
it.Current.Valu e = "some new text";
xdoc.Save(Syste m.StandardOutpu t);

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.o rg
"C# newbie" <it************ **@yahoo.com> wrote in message news:eR******** ******@TK2MSFTN GP12.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.o rg> wrote in message news:Ob******** ******@TK2MSFTN GP12.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.o rg
"C# newbie" <it************ **@yahoo.com> wrote in message news:#9******** ******@TK2MSFTN GP12.phx.gbl...
Hello group,

When I run an XPATH query first as:

//*[contains(transl ate(.,\"ABCDEFG HIJKLMNOPQRSTUV WXYZ\",
\"abcdefghijklm nopqrstuvwxyz\" )

Then within a loop like:

foreach(XmlNode xnode in node.SelectNode s(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.o rg> wrote in message news:O6******** ******@TK2MSFTN GP11.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.o rg
"C# newbie" <it************ **@yahoo.com> wrote in message news:eR******** ******@TK2MSFTN GP12.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.o rg> wrote in message news:Ob******** ******@TK2MSFTN GP12.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.o rg
"C# newbie" <it************ **@yahoo.com> wrote in message news:#9******** ******@TK2MSFTN GP12.phx.gbl...
Hello group,

When I run an XPATH query first as:

//*[contains(transl ate(.,\"ABCDEFG HIJKLMNOPQRSTUV WXYZ\",
\"abcdefghijklm nopqrstuvwxyz\" )

Then within a loop like:

foreach(XmlNode xnode in node.SelectNode s(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
687
by: C# newbie | last post by:
Hello group, When I run an XPATH query first as: //*[contains(translate(.,\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\", \"abcdefghijklmnopqrstuvwxyz\")
0
10395
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10204
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11895
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
11477
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11673
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10974
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7679
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
6627
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3814
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.