gpt4 book ai didi

ios - 如何在 iOS 中查找字符串并替换它的子字符串?

转载 作者:行者123 更新时间:2023-11-29 10:33:53 24 4
gpt4 key购买 nike

我有如下字符串,

# Blender v2.72 (sub 0) OBJ File: 'untitled.blend'
# www.blender.org
mtllib test03.mtl
o Cube.001
v 3.851965 0.040851 6.046364
v 3.851965 0.087396 6.092909
v -3.851965 0.087396 6.092909

我需要阅读第3行(mtllib test03.mtl)并将test03.mtl替换为test04.mtl。然后最后一行应该如下所示,

# Blender v2.72 (sub 0) OBJ File: 'untitled.blend'
# www.blender.org
mtllib test04.mtl
o Cube.001
v 3.851965 0.040851 6.046364
v 3.851965 0.087396 6.092909
v -3.851965 0.087396 6.092909

我试着用下面的代码来做,

NSString* str= @"mtllib test03.mtl";

// Search from back to get the last space character
NSRange range= [str rangeOfString: @"mtllib " options:NSBackwardsSearch];

// Take the first substring: from 0 to the space character
NSString* finalStr = [str substringToIndex: range.location];
NSLog(@"%@", finalStr);

但无法从上面的行加载行(mtllib test03.mtl)。我该如何解决这个问题。

提前致谢!

最佳答案

您可以使用正则表达式:

NSError *error = nil;
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"^mtllib (.*)$" options:NSRegularExpressionAnchorsMatchLines error:&error];
NSString *modifiedString = [regex stringByReplacingMatchesInString:string options:0 range:NSMakeRange(0, [string length]) withTemplate:@"mtllib test04.mtl"];
if (error) {
NSLog(@"Error: %@", error);
}
NSLog(@"%@", modifiedString);

没有正则表达式的解决方案:

NSString *str = @"# Blender v2.72 (sub 0) OBJ File: 'untitled.blend'\n\
# www.blender.org\n\
mtllib test03.mtl\n\
o Cube.001\n\
v 3.851965 0.040851 6.046364\n\
v 3.851965 0.087396 6.092909\n\
v -3.851965 0.087396 6.092909";
NSString *finalStr = str;

// Find "mtllib" substring
NSRange range= [str rangeOfString: @"mtllib " options:NSBackwardsSearch];
// This is location of filename, now we need to find it's range
CGFloat fileNameLocation = range.location + range.length;
// Find first end of line after "mtllib" substring
NSRange newlineRange = [str rangeOfString:@"\n" options:0 range:NSMakeRange(fileNameLocation, str.length-fileNameLocation)];
if (newlineRange.location != NSNotFound) {
NSRange filenameRange = NSMakeRange(fileNameLocation, newlineRange.location - fileNameLocation);
finalStr = [str stringByReplacingCharactersInRange:filenameRange withString:@"test04.mtl"];
} else {
// Assume, there is no more data in string, only filename
NSRange filenameRange = NSMakeRange(fileNameLocation, str.length - fileNameLocation);
finalStr = [str stringByReplacingCharactersInRange:filenameRange withString:@"test04.mtl"];
}
NSLog(@"%@", finalStr);

关于ios - 如何在 iOS 中查找字符串并替换它的子字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28084301/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com