|
|
|
ต้องการเอา " " ที่ครอบข้อความออกครับ จะเอามา split ลง datatable |
|
|
|
|
|
|
|
replace ด้วย string.Empty
|
|
|
|
|
Date :
2011-04-20 14:29:35 |
By :
--------- |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
private string readtxt(string argText)
{
string[] removedc = argText.Split(';');
string result = string.Empty;
foreach (string strSplit in removedc)
{
result = result + "," + strSplit.Replace('\"',' ').Trim();
}
return result.TrimStart(',');
}
private void btnStop_Click(object sender, EventArgs e)
{
string filestxt = @"test.ini";
if(File.Exists(filestxt))
{
string[] text = File.ReadAllLines(filestxt);
int lentext = text.Length;
for (int i = 0; i < lentext; i++)
{
string result = readtxt(text[i]);//อยากทำอะไรต่อก็ทำเลยครับ
}
}
}
ผมทำเผื่อไว้ครับ แต่ทำเหมือน No.1 ก็ได้น่ะครับ
|
|
|
|
|
Date :
2011-04-20 15:04:20 |
By :
GhostLocal |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|