String trim last character
string-trim-last-character.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 plants = "Common Milkweed. Orange Milkweed. Yellow Milkweed";
Label1.Text = "string of plants..................<br />";
Label1.Text += plants + "<br />";
//this line remove/delete/trim last character from string.
string trimmedLastCharacter = plants.TrimEnd(plants.Last());
Label1.Text += "<br />plants after trim last character........<br />";
Label1.Text += trimmedLastCharacter;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string trim last character</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string trim last character
</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 trim last character"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- How to create a string by repeating a character
- How to get number of characters from right side of a string
- How to get number of characters from left side of a string
- How to trim a string to a specified length
- How to convert a string to a datetime object
- How to convert a string to float
- How to parse a string into char
- How to convert a string to an IP address
- How to convert a string to an int array
- How to split a string to key value pairs