iOS字符串截取问题
PHPz
PHPz 2017-04-18 09:46:48
0
1
681

1.05:55:35即29.93小时
例如这样一个字符串怎么获取到后面的29.93啊。。
位置不固定有可能是
0:00:00即0:00小时
通过 ‘即’字去分离好像也不可以啊。。

NSArray *array = [allTime componentsSeparatedByString:@"即"];
好像是不对的。

PHPz
PHPz

学习是最好的投资!

reply all(1)
迷茫

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.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template