Codeanswer
My blog share the my c# knowledge to others and get response from others.
Friday, September 10, 2010
How To Replace String?
Use string To replace :</b>
private void button1_Click(object sender, EventArgs e)
{
string oldstr = "Hu MAJAMA Chu?";
string newstr=oldstr.Replace("chu","Tu");
MessageBox.Show(newstr);
}
<b>
Newer Post
Older Post
Home
Covid - 19 (Coronavirus) - live Update -
WPF Command bindings - Mouse clicks
The following article discusses the WPF command binding feature with relation to Mouse clicks. One of WPF powerful features is the bindin...
Covid - 19 (Coronavirus) - live Update -
Export to PDF file in ASP.Net – Gridview to PDF, ASPX Page Content to PDF
Creating data driven application is one of the most commonly done task in our day today application development. In these applications, ...