首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >如何在iOS中查找字符串并替换其子字符串?

如何在iOS中查找字符串并替换其子字符串?
EN

Stack Overflow用户
提问于 2015-01-22 08:38:16
回答 1查看 109关注 0票数 1

我有一根绳子,如下所示,

代码语言:javascript
运行
复制
# 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

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

代码语言:javascript
运行
复制
# 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

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

代码语言:javascript
运行
复制
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)。我该怎么解决这个问题。

提前谢谢!

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2015-01-22 08:56:25

您可以使用正则表达式:

代码语言:javascript
运行
复制
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);

和没有regexp的解决方案:

代码语言:javascript
运行
复制
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);
票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/28084301

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档