Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのサイトに不慣れです。ツイートを取得して、その中の情報を Xcode の別々のセクションに分割できるかどうかを知っている人はいますか? たとえば... ツイートの内容が... "Sky News: これは見出しです: on 12/04/12: これはメッセージの本文です" コロンで区切られたチャンクを個別の文字列として抽出できますか? 1 つの文字列は「Sky News」かもしれません 1 つの「これは見出しです ...etc? よろしくお願いします Al
-[NSString componentsSeparatedByString:]文字列を文字列の配列に分割できます。
-[NSString componentsSeparatedByString:]
NSArray *arr = [@"This: is: a: string" componentsSeparatedByString:@":"];
これで、配列arrには 4 つの項目が含まれます。
arr