|
|
|
C# เขียนฟังชั่น Split คำโดยไม่ใช้ เมธอท Split ให้ดูทีสิครับ ท่านผุ้เชี่ยวชาญ |
|
|
|
|
|
|
|
พอดีเห็นกระทู้ เมธอท Split เลยอยากรู้ว่า ถ้าจะSplitคำโดยเขียนฟังชั่นขึ้นเอง code จะประมาณไหน
เช่น มี ae1,ae2,ae3,ae4,ae5,ae6 จะ Split เอาตัวอักาณไหนก็ได้ และเอากี่คำก็ได้ จะต้องเขียนยังไงครับ
Tag : .NET, Web (ASP.NET), Win (Windows App), Console App, C#, VS 2010 (.NET 4.x)
|
|
|
|
|
|
Date :
2010-09-29 01:00:03 |
By :
nooknoname |
View :
2791 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
<%@ Page Language="C#" %>
<script runat="server">
void Page_Load(Object sender, EventArgs e)
{
String strString = "2006,2007,2008,2009";
String[] myArr = strString.Split(',');
int i =0;
foreach (String myList in myArr)
{
this.lblText1.Text = this.lblText1.Text + "(" + i + ") " + myList + "<br>";
i = i + 1;
}
}
</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblText1" runat="server"></asp:Label>
</form>
</body>
</html>
Go to : ถามเรื่อง การใช้งาน เมธอท Split ใน C# ของ .NET ช่วยอธิบายหน่อยครับ
|
|
|
|
|
Date :
2010-09-29 06:18:28 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|