Escape brackets in a formatted string
escape-curly-braces-in-a-format-string.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string num = "10,25,30,50";
string output = String.Format("text{{{0}}}", num);
Label1.Text += output;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>c# example - escape brackets (curly braces) in a format string</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# example - escape brackets (curly braces)
<br /> in a format string
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="XX-Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="Escape Curly Braces"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- How to count occurrences of a string within a string
- How to format a string to add commas in thousands place for a number
- How to get only first n characters from a string
- How to repeat a string
- How to split a string
- How to split a string by another string
- How to split a string by multiple characters delimiter
- How to split a string and remove empty element
- How to split a string to a list
- How to convert a comma delimited string to array