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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:32:46+00:00 2026-06-15T00:32:46+00:00

string url = http://www.myurl.xxx; HtmlWeb webGet = new HtmlWeb(); HtmlDocument doc = webGet.Load(url); foreach(var

  • 0
string url = "http://www.myurl.xxx";
HtmlWeb webGet = new HtmlWeb();
HtmlDocument doc =  webGet.Load(url);

foreach(var script in doc.DocumentNode.Descendants("script").ToArray())
   script.Remove();


foreach(var style in doc.DocumentNode.Descendants("style").ToArray())
   style.Remove();

 string mtext =  doc.DocumentNode.InnerText;

The string mtext has no spacing between text where the tags have been removed, how can I ‘Remove’ AND replace the removed tags with a line break or ” ” for all tags instances?

  • 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-15T00:32:47+00:00Added an answer on June 15, 2026 at 12:32 am

    You’re just removing the nodes. Instead of this you should replace those nodes with the new ones. This will replace your <script> and <style> nodes with a space symbol:

    foreach (var node in doc.DocumentNode.SelectNodes("//script|//style").ToArray())
    {
        var replacement = doc.CreateTextNode(" ");
        node.ParentNode.ReplaceChild(replacement, node);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

MyObject myobject= new MyObject(); myobject.name=Test; myobject.address=test; myobject.contactno=1234; string url = http://www.myurl.com/Key/1234 ? + myobject;
Code : string url = http://www.google.com; ScriptManager.RegisterClientScriptBlock(this, this.GetType(), UrlSocialDefinitivo, var UrlSocialDefinitivo= + Server.UrlEncode(url) +
Suppose I am retrieving a url as follows: string url = http://www.somesite.com/somepage.html HttpWebRequest req
I cannot request url http://www.besondere-raumdüfte.de with urllib2.urlopen(). I tried to encode string using urllib.urlencode
I have a url string like this: http://www.google.com/cse?cx=017840637368510444960:ny1lmky7r-0&client=google-csbe&output=xml_no_dtd&q=simon+g I need to send this url
i am storing url string in database like this, 'http://www.domain.com' how can i display
My Code is String url = http: gd.geobytes.com/gd?after=-1&variables=GeobytesCountry,GeobytesCity; RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, URL
First see my Source Code: WebClient client = new WebClient(); String url = http://localhost;
URL url = new URL(http://twitter.com/statuses/update.xml); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setDoOutput(true); String cridentials =
Right now I am using this code: string url = http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=hey&esrch=FT1; string source =

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.