String split trim
string-split-trim.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string plants = "Coneflowe, Deadnettle, Dewberry, Dindle, Drumstick";
Label1.Text = plants;
//this line split string by comma and trim values and create string array.
string[] trimmedSplittedArray = plants.Split(',').Select(x => x.Trim()).ToArray();
//this line only split string by comma and create string array
string[] splittedArray = plants.Split(',');
Label1.Text += "<br /><br />string splitted array trimmed elements......<br />";
foreach (string s in trimmedSplittedArray)
{
Label1.Text += s;
}
Label1.Text += "<br /><br />string splitted array elements......<br />";
foreach (string s in splittedArray)
{
Label1.Text += s;
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string split trim</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string split trim
</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 trim"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- How to split a string and remove empty element
- How to split a string to a list
- How to convert a comma delimited string to array
- How to format a string as currency using localization
- How to format a string with padding
- String contains list of strings
- How to escape characters within a string
- How to find all occurrences of a substring within a string
- How to reverse a string
- How to parse a string into char