可能重复:
Objective C: How to extract part of a String (e.g. start with '#')
我想将字符串分成几个部分。我的字符串是:
NSString * myString = @"Multiply top and bottom to get < mathtype x3y2z3 over x3yz2 >,now cancel down the powers of < i >x, y, z< /i >.If you prefer, you can cancel down before you start multiplying.";
我需要三个部分。 1.将顶部和底部相乘得到 2.&lt; mathtype x3y2z3 over x3yz2&gt; 3.现在取消&lt; i> x,y,z&lt; / i&gt;。如果您愿意,可以在开始乘法之前取消。
我该怎么做?
答案 0 :(得分:0)
如果上述操作失败,您可以随时将其转换为字符数组并循环播放。
- (const char *)cStringUsingEncoding:(NSStringEncoding)encoding
中有更多详情