String equals
string-equals.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
//this section create string variables.
string stringPlants = "Meadow Cabbage";
string stringPlants2 = "Swamp Cabbage";
string stringPlants3 = "Meadow Cabbage";
Label1.Text = "string of plants..................<br />";
Label1.Text += "stringPlants: " + stringPlants;
Label1.Text += "<br />stringPlants2: " + stringPlants2;
Label1.Text += "<br />stringPlants3: " + stringPlants3;
//this line test two string equality.
Boolean result1 = stringPlants.Equals(stringPlants2);
Boolean result2 = stringPlants.Equals(stringPlants3);
Label1.Text += "<br /><br />stringPlants equal to stringPlants2...........?" + result1;
Label1.Text += "<br /><br />stringPlants equal to stringPlants3...........?" + result2;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string equals</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string equals
</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 equals"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to check whether a string contains a specific character
- How to check whether a string contains at least one number
- How to check whether a string contains numbers only
- String contains ignorecase
- How to check whether a string contains any special character
- How to append a substring to a string
- How to append a char to a string
- String equals case insensitive
- How to escape double quotes in a string
- How to escape characters within a string