String split to list
string-split-to-list.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string plants = "Gallberry,Golden Garlic,Wild Garlic,Gilliflower,Water Fern";
Label1.Text = plants;
//this line split string by comma and create string array.
string[] splittedArray = plants.Split(',');
//this line create a list from string array.
List<string> splittedList = splittedArray.ToList();
Label1.Text += "<br /><br />string splitted list elements......<br />";
foreach (string s in splittedList)
{
Label1.Text += s + "<br />" ;
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string split to list</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string split to list
</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 to list"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to replace a substring of a string
- How to split a string with specific delimiter to populate an array
- How to compare two strings by ignoring case
- How to escape brackets in a formatted string
- How to count occurrences of a string within a string
- How to repeat a string
- How to split a string
- How to split a string and trim element
- How to split a string and remove empty element
- How to convert a comma delimited string to array