1.05:55:35即29.93小时
例如这样一个字符串怎么获取到后面的29.93啊。。
位置不固定有可能是
0:00:00即0:00小时
通过 ‘即’字去分离好像也不可以啊。。
NSArray *array = [allTime componentsSeparatedByString:@"即"];
好像是不对的。
迷茫2017-04-18 09:48:48
NSString *str =@"05:55:35 is 29.93 hours";
int index = 0;
for(int i =0; i < [strrr length]; i++)
{
NSString * temp = [str substringWithRange:NSMakeRange(i, 1)];
if ([temp isEqualToString:@"即"]) {
NSLog(@"%d",i);
index = i;
}
}
NSString *new = [strrr substringFromIndex:index];
First traverse the string to find the index of @"ie" and then intercept the original string. There should be a simpler method.