ghost_mv
ghost_mv

Reputation: 1200

How to replace value of a specific node in an XML string?

My specific case is that I have an XML result from an ASMX service. I need to scan this XML string for a specific node and "ToLower()" the value in the node. I can't access the service to simply change the return at that level.

Upvotes: 0

Views: 2116

Answers (1)

Nate
Nate

Reputation: 30636

Maybe something like this would help get you started: How to change XML Attribute

Upvotes: 1

Related Questions