2
回車我有他以下問題:檢測字符串中的
String line = @"Line1
Line2
Line3
Line4";
我試圖創建一個循環時,遇到每行存儲在單獨的字符串回車符檢測。
String value
static long LinesCount(string s)
{
long count = 0;
int position = 0;
while ((position = s.IndexOf('\n', position)) != -1)
{
count++;
}
return count;
}
for (int i = 1; i > LinesCount(line); i++)
{
value = line.Split(Environment.NewLine)
}
令人印象深刻的嘗試 –