String append char
string-append-char.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
//this section create a string variable.
string stringOfChars = "ABCDEFGHIJK";
Label1.Text = "string of chars..................<br />";
Label1.Text += stringOfChars;
//this line create a char variable with value 'L'
Char c = 'L';
//this line append character 'L' on string (insert at string last)
stringOfChars = stringOfChars.Insert(stringOfChars.Length,c.ToString());
//another way to append character on string
//stringOfChars += c;
Label1.Text += "<br /><br />string after append char 'L'...........<br />";
Label1.Text += stringOfChars;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string append char</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string append char
</h2>
<hr width="550" align="left" color="Gainsboro" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="string append char"
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 decimal string as percentage value
- How to format a string as hexadecimal
- How to convert an integer to fixed length hex string format
- String contains ignorecase
- How to check whether a string contains any special character
- How to append a substring to a string
- How to add backslash to a string
- How to concatenate multiple strings