String split newline
string-split-newline.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string plants = "Keek, Kinnikinnik, \nKousa, \r\nKudzu, Alder, \nApple";
Label1.Text = "string............<br />";
Label1.Text += "Keek, Kinnikinnik, \\nKousa, \\r\\nKudzu, Alder, \\nApple";
//this line split string on new line (line break) based on \n \r\n.
string[] splittedArray = plants.Split(new string[]{"\r\n","\n"},StringSplitOptions.None);
Label1.Text += "<br /><br />string splitted string array elements......<br />";
foreach (string s in splittedArray)
{
Label1.Text += s + "<br />" ;
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string split newline</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string split newline
</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 newline"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>
- String split and join
- How to format a string
- How to format a string as a number
- How to replace a character in a string
- How to perform string replace by ignoring case
- String equals case insensitive
- How to escape double quotes in a string
- How to escape characters within a string
- How to remove the last character from a string
- How to remove white spaces from a string