String split by string
string-split-by-string.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string text = "American Cress. Bank Cress. Belle Isle Cress. Bermuda Cress";
Label1.Text = text;
//this line split string by string
string[] stringSplittedArray = text.Split(new string[] { "Cress" }, StringSplitOptions.None);
Label1.Text += "<br /><br />splitted string by string ['Cress']......<br />";
foreach (string s in stringSplittedArray)
{
Label1.Text += s ;
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string split by string</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string split by string
</h2>
<hr width="550" align="left" color="Gainsboro" />
<br />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="string split by string"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to repeat a string
- How to split a string
- How to split a string by multiple characters delimiter
- How to convert a string to decimal
- How to convert a delimited string to a dictionary
- How to convert a string to a double array
- How to convert a string to a guid
- How to convert a string to a generic list
- How to convert a string to an int array
- How to split a string to key value pairs