String endswith ignorecase
string-endswith-ignorecase.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 stringPlants = "Goldenglow. Winter Gilliflower. Harlequin. Goldenglow";
Label1.Text = "string of plants..................<br />";
Label1.Text += stringPlants;
string wordToCheck = "Goldenglow";
string wordToCheck2 = "GoldenGLOW";
string wordToCheck3 = "Winter";
//this line check string ends with 'Goldenglow' or not / ignore case
Boolean result = stringPlants.EndsWith(wordToCheck, StringComparison.OrdinalIgnoreCase);
//this line check string ends with 'GoldenGLOW' or not / ignore case
Boolean result2 = stringPlants.EndsWith(wordToCheck2, StringComparison.OrdinalIgnoreCase);
//this line check string ends with 'Winter' or not / ignore case
Boolean result3 = stringPlants.EndsWith(wordToCheck3, StringComparison.OrdinalIgnoreCase);
Label1.Text += "<br /><br /> string ends with [Goldenglow] ignore case? " + result.ToString();
Label1.Text += "<br />string ends with [GoldenGLOW]? ignore case" + result2.ToString();
Label1.Text += "<br />string ends with [Winter] ignore case? " + result3.ToString();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string endswith ignorecase</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string endswith ignorecase
</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 endswith ignorecase"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to escape brackets in a formatted string
- How to count occurrences of a string within a string
- How to format a string as negative currency
- How to format a string as a date
- How to format a date string as yyyy-MM-dd format
- String contains ignorecase
- How to check whether a string contains any special character
- How to check whether a string ends with specific substring
- How to check whether a string starts with specific substring
- How to check whether a string ends with a number