Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8839329
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:12:55+00:00 2026-06-14T10:12:55+00:00

How can I use Regex Replace with XML? Assuming I have the given text

  • 0

How can I use Regex Replace with XML?

Assuming I have the given text below:

<test>Hello World</test>
<test1>Hello World</test1>
<test2>Hello World</test2>
<test3>Hellow World</test3>

How can I replace all “Hello World” tag values if the parent tag is not test tag?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T10:12:56+00:00Added an answer on June 14, 2026 at 10:12 am

    Regex can be used for parsing XML since it is strict with its format but it is not recommended to use it

    Use LINQ2XML

    XElement doc=XElement.Load("yourXML.xml");
    foreach(XElement elm in doc.Descendants().Elements().Where(x=>x.Name.LocalName!="test"))
    {
         if(elm.Value=="hello World")
              elm.Value="";//replace here
    }
    
    doc.Save("yourXml.xml");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I use Regex.Replace to achieve the flowing: Given the input string: DV_DHW
Can you use two regex in preg_replace to match and replace items in an
I have a little script that replace some text, that come from a xml
I know I can use RegEx to replace all occurrences of 'a', 'b', or
With Regex::Replace we can use $1, $2, ... to match corresponding groups. But how
I want to use a look-ahead regex for replacement with the System.Text.RegularExpression.Replace(...) method. Now
How can use regex to make sure that is only a single slash end
I don't know if I can use regex for this, but I want to
How can I use regex in python to capture something between two strings or
Initiated by the reply . How can I use only Regex instead of wildcards?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.