String left
string-left.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 = "Buffalo Weed. Buckeye. Blackhaw. False Boxwood";
Label1.Text = "string of plants..................<br />";
Label1.Text += plants + "<br />";
//this line get left most 7 letters from string
string leftSubString = plants.Substring(0, 7);
string left13Characters = plants.Substring(0, 13);
Label1.Text += "<br />left most 7 characters from plants string........<br />";
Label1.Text += leftSubString;
Label1.Text += "<br /><br />left most 13 characters from plants string........<br />";
Label1.Text += left13Characters;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string left</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string left
</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 left"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to perform regex case insensitive string replace
- How to check whether a string ends with specific substring
- How to check whether a string starts with specific substring
- How to find a substring within a string
- How to find index of a substring in a string
- How to remove a character from a string at specified position
- How to remove a substring from a string
- How to create a string by repeating a character
- How to get number of characters from right side of a string
- How to trim the last character of a string