String find index
string-find-index.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 = "Hard Thistle. Cutleaf Toothwort. Leatherleaf Viburnum";
Label1.Text = "string of plants..................<br />";
Label1.Text += plants+"<br />";
string indexToFind = "Cutleaf";
char indexToFind2 = 'T';
//this line find/search index of a substring in string
if (plants.IndexOf(indexToFind) != -1)
{
Label1.Text += "<br />Cutleaf found in string index of: ";
Label1.Text += plants.IndexOf(indexToFind);
}
else
{
Label1.Text += "<br />Cutleaf not found in string";
}
//this line find/search index of a character in string
if (plants.IndexOf(indexToFind2) != -1)
{
Label1.Text += "<br />character 'T' found in string index of: ";
Label1.Text += plants.IndexOf(indexToFind2);
}
else
{
Label1.Text += "<br />character 'T' not found in string";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string find index</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string find index
</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 find index"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to convert a string to int
- How to perform regex case insensitive string replace
- How to replace a character in a string from a starting index
- How to replace first occurrence of a substring within a string
- String contains regex
- How to check whether a string contains a specific character
- How to check whether a string contains at least one number
- How to find a substring within a string
- How to find first index of a character within a string
- How to find all occurrences of a substring within a string