String replace character
string-replace-character.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
//this section create string variables.
string stringValue = "1 2 3 4 5 6 7 8 9 10";
string stringValue2 = "replacing multiple characters in a string.";
Label1.Text = "string1: " + stringValue.ToString();
Label1.Text += "<br />string2: " + stringValue2.ToString();
//this section replace charcters with character in string.
string modifiedString1 = stringValue.Replace(' ', '-');
string modifiedString2 = stringValue2.Replace('a', 'k');
Label1.Text += "<br /><br />modified string 1......................";
Label1.Text += "<br />" + modifiedString1.ToString();
Label1.Text += "<br /><br />modified string 2......................";
Label1.Text += "<br />" + modifiedString2.ToString();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string replace character</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string replace character
</h2>
<hr width="550" align="left" color="Gainsboro" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
Font-Bold="true"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="string replace character"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to format a string as negative currency
- How to format a string as a date
- How to format a date string as yyyy-MM-dd format
- How to format a string as a date without time
- How to format a string as decimal
- How to format a decimal string as percentage value
- How to format a string as hexadecimal
- How to format a string with leading zeros
- How to format a string to a fixed length string
- How to perform string replace by ignoring case