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 6385963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:57:53+00:00 2026-05-25T02:57:53+00:00

I have a xml in which I have to search for a tag and

  • 0

I have a xml in which I have to search for a tag and replace the value of tag with a new values. For example,

<tag-Name>oldName</tag-Name>  

and replace oldName to newName like

<tag-Name>newName</tag-Name>    

and save the xml. How can I do that without using thirdparty lib like BeautifulSoup

Thank you

  • 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-05-25T02:57:53+00:00Added an answer on May 25, 2026 at 2:57 am

    The best option from the standard lib is (I think) the xml.etree package.

    Assuming that your example tag occurs only once somewhere in the document:

    import xml.etree.ElementTree as etree
    # or for a faster C implementation
    # import xml.etree.cElementTree as etree
    
    tree = etree.parse('input.xml')
    elem = tree.find('//tag-Name') # finds the first occurrence of element tag-Name
    elem.text = 'newName'
    tree.write('output.xml')
    

    Or if there are multiple occurrences of tag-Name, and you want to change them all if they have “oldName” as content:

    import xml.etree.cElementTree as etree
    
    tree = etree.parse('input.xml')
    for elem in tree.findall('//tag-Name'):
        if elem.text == 'oldName':
            elem.text = 'newName'
    # some output options for example
    tree.write('output.xml', encoding='utf-8', xml_declaration=True)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a similar XML file which i required to search for its values
I have some XML which I'm trying to search: <debts> <section id=24 description=YYYYY> <section
I have some XML which contains records and sub records, like this: <data> <record
I have an XML (first.xml) which looks like :: <?xml version=1.0 encoding=utf-8?> <saw:jobInfo xmlns:saw=com.analytics.web/report/v1.1>
I have this xml from which I am trying to grab the value in
I have this xml file which has text init. i.e Hi my name is
I have the following Java code which will search in an xml for a
Say I have a Java String which has xml data like so: String content
I have an XML document in which I want to search for some elements
I want to get all xml elements (xml descendents) which have some attributes like:

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.