Posts

Showing posts with the label string

How to get html of web page in string by web page url

Image
           Hi friends sometimes we need a content of web page like text or links and many more things.then we use the html of page by inspect elements.            Now that we do by c# code.this work on both web and window application. First include library of " using System.Net; " Second code for one line. string strhtml = new WebClient().DownloadString("http://facebook.com"); This returns string of all web page html in string. We can manipulate string and get we require content.

How to work with comma-separated strings

Hi to all. In this post we introduce with comma separated strings. how we can work with it and manipulate in our work. string language= "C#,Java,Php,python; now we convert it to string array . string[] languageArray= language.Split(','); foreach (string slanguage in languageArray) {     //code what you want     //print slanguage } We can split comma separated string like this.also we can split any character with split function. like language.Split('|'); Thanks for read post. Any problem comment us.