0

可能重复:
目标 C:如何提取字符串的一部分(例如以“#”开头)

我想将字符串分成几部分。我的字符串是:

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. < mathtype x3y2z3 over x3yz2 > 3. 现在取消 < i >x, y, z</i > 的幂。如果您愿意,可以在开始相乘之前取消.

我怎样才能做到这一点?

4

1 回答 1

0

如果上述方法失败,您始终可以将其转换为字符数组并循环遍历它。

- (const char *)cStringUsingEncoding:(NSStringEncoding)encoding

NSString Docs中有更多详细信息

于 2012-06-20T08:31:05.307 回答