String format
string-format.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string stringValue = "c# examples";
int intValue = 125;
DateTime dateValue = DateTime.Now;
Label1.Text = "String: " + stringValue;
Label1.Text += "<br />Int: " + intValue;
Label1.Text += "<br />DateTime: " + dateValue;
string formattedString = string.Format("String: {0} Int: {1:0.000} DateTime: {2:MM/dddd/yyyy}",stringValue,intValue,dateValue);
Label1.Text += "<br /><br />formatted string..............<br />";
Label1.Text += formattedString;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string format</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string format
</h2>
<hr width="550" align="left" color="Gainsboro" />
<br />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="string format"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- String split and join
- How to split a string on newlines
- How to format a string as a number
- How to format a string as a number with 2 decimal places
- How to format a string as a number with padding
- String format number two digits
- How to format a string as currency
- How to format a string as currency with dollar sign
- How to format a string as currency without dollar sign
- How to format a string as currency using localization