コンマ区切りの文字列があります。改行で区切られた形式に変換するにはどうすればよいですか。私の文字列は次のようになります。
red,yellow,green,orange,pink,black,white
そして、このようにフォーマットする必要があります:
red
yellow
green
orange
pink
black
white
これが私のコードです:
public static string getcolours()
{
List<string> colours = new List<string>();
DBClass db = new DBClass();
DataTable allcolours = new DataTable();
allcolours = db.GetTableSP("kt_getcolors");
for (int i = 0; i < allcolours.Rows.Count; i++)
{
string s = allcolours.Rows[i].ItemArray[0].ToString();
string missingpath = "images/color/" + s + ".jpg";
if (!FileExists(missingpath))
{
colours.Add(s);
}
}
string res = string.Join(", ", colours);
using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"F:\test.txt", true))
{
file.WriteLine(res);
}
return res;
}