String truncate
string-truncate.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 birds = "Snow Petrel. Royal Albatross. Laysan Albatross. Cape Petrel";
Label1.Text = "string of birds..................<br />";
Label1.Text += birds;
string truncatedString = birds;
string truncatedString2 = birds;
if (birds.Length > 10)
{
//this line truncated string to 10 character.
truncatedString = birds.Substring(0, 7);
truncatedString += "...";
//this line truncated string without using dotted.
truncatedString2 = birds.Substring(0, 10);
}
Label1.Text += "<br /><br />truncated string 10 charcter limit.........<br />";
Label1.Text += truncatedString;
Label1.Text += "<br /><br />truncated string 10 charcter limit without dotted.........<br />";
Label1.Text += truncatedString2;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string truncate</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string truncate
</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 truncate"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to remove white spaces from strating of a string
- How to trim a string to a specified length
- How to convert a string to a datetime object
- How to write a string to a file
- How to convert a string to a guid
- How to convert a string to a generic list
- How to get bytes from a string
- How to convert a string to an int list
- How to convert a string to an IP address
- How to convert a string to an int array