我怎麼可能讓這個我可以拆分從文件中讀取到單獨字符串字符串或使其只讀某一線一樣,如果我想它只讀第一行一個文本文件和將其存儲到一個字符串中。這裏是我用來閱讀文本文件的代碼。分裂出一個字符串
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *pday11 = [documentsDirectory stringByAppendingPathComponent:@"day11.txt"];
NSString *stringFromFileday11 = [NSString stringWithContentsOfFile:pday11 encoding:NSUTF8StringEncoding error:nil];
//If i used this to read the file how could i split up the "stringFromFileday11" into different strings where every line is a string from the file
你爲什麼如此堅定地擁有這些是單獨的字符串?最簡單的解決方案是將它們合併爲一個。爲什麼這不合適?你真的想長時間附加到文件嗎? – Chuck 2013-04-09 23:14:27
我解決了問題的第一部分。 – user2259486 2013-04-09 23:27:50
我需要分割字符串,因爲它的部件在一個如果statment – user2259486 2013-04-09 23:28:45