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.
古い文字列の特定の部分だけから新しい文字列を作成できるように、NSStringを「トリミング」するにはどうすればよいですか?
たとえば、「9月12日の月曜日」という文字列がある場合、「月曜日」の部分だけを選択するにはどうすればよいですか。
使用するNSRange
NSRange
例:
NSRange range; range.location = 0; range.length = 6; NSString *Secondstring = [Firststring substringWithRange:dayRange];
「Firststring」に「9月12日の月曜日」が含まれている場合、「Secondstring」を印刷すると「Monday」だけになります。