Extract characters from NSString object

后端 未结 3 1819
独厮守ぢ
独厮守ぢ 2021-01-22 08:05

How to extract individual characters from a string object in Objective-C ?

Example:

NSString * fooString = [NSString stringWithFormat:@         


        
3条回答
  •  春和景丽
    2021-01-22 09:02

    you can also use [NSString getCharacters:(unichar array) range:(nsrange)]; you will get an easy to manipulate array.I needed it my self and found it on this link

提交回复
热议问题