c# - count occurrences of a string within a string by linq
count-occurrences-of-a-string-within-a-string-by-linq.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
Label1.Text = "";
string text = "how| to count| occurrences of | a string | within| a string";
int count = text.Count(f => f == '|');
Label1.Text += text + " = " + count;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# - count occurrences of a string within a string by linq</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# linq example - how to count occurrences
<br /> of a string within a string
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="X-Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="Count Occurrences Of A String Within A String By Linq"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- linq - How to determine if any items in a sequence match condition
- linq - How to get last element of a sequence that match condition
- linq - How to get single element of a sequence that match condition
- linq - How to get single element of a sequence or a default value
- linq - How to create a comment in an XML document
- linq - How to create an XML document
- linq - How to create an XML element
- linq - How to select distinct elements from a sequence
- LINQ to remove objects within a List
- linq - How to sort a date list order by ascending descending