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...
Reading and Writing Files in SQL Server using T-SQL
SQL Server has never been short of ways to read from and write to files and it is always better to use the standard techniques provided b...
Angular Tutorial - Part 1: Introduction to Angular.js
In this article we will look at the basics of Angular.Js. This is the first part of an article series. The main objective of this series i...