如何在数组中找到相似的字符串并重命名字符串?

发布于 2024-11-14 08:26:54 字数 282 浏览 4 评论 0原文

我想在数组/字典中找到类似的字符串,并通过在字符串中添加后缀来重命名它们。例如,假设我的数组/字典包含这样的字符串:

1.Work
2.Work
3.Work
4.Home
5.Home
6.Mobile
7.Mobile 

等等。可能有任何类似的字符串。现在我想像这样重命名它们:

1.Work(1)
2.Work(2)
3.Work(3)
4.Home(1)
5.Home(2)
6.Mobile(1)
7.Mobile(2)

I want to find similar strings in an array/dictionary and rename them by adding a postfix to the string. For example suppose my array/dictionary contains strings like this:

1.Work
2.Work
3.Work
4.Home
5.Home
6.Mobile
7.Mobile 

etc. there could be any similar strings. Now I want to rename them like this:

1.Work(1)
2.Work(2)
3.Work(3)
4.Home(1)
5.Home(2)
6.Mobile(1)
7.Mobile(2)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

新一帅帅 2024-11-21 08:26:54

好吧,我不知道字典,但对于数组你可以做这样的事情。

    NSMutableArray *myArr = [fill the array with w/e];
    int home;
    int mobile;
    int work;
    for(int x = 0; x < [myArr count]; x++){
    NSString *r = [myArr objectAtIndex:(NSUInteger)x];
    if([r isEqualToString:@"work"]){
    work++;
    [myArr replaceObjectAtIndex:x withObject:[NSString strinWithFormat:@"%@(%i)", r, work]];
    }
    else if([r isEqualToString:@"home"]){
    home++;
    [myArr replaceObjectAtIndex:x withObject:[NSString strinWithFormat:@"%@(%i)", r, home]];
    }
    else if([r isEqualToString:@"mobile"]){
    mobile++;

    [myArr replaceObjectAtIndex:x withObject:[NSString strinWithFormat:@"%@(%i)", r, mobile]];

    }
    }

祝你好运

Well, i don't know about a dictionary, but for an array you could do something like this.

    NSMutableArray *myArr = [fill the array with w/e];
    int home;
    int mobile;
    int work;
    for(int x = 0; x < [myArr count]; x++){
    NSString *r = [myArr objectAtIndex:(NSUInteger)x];
    if([r isEqualToString:@"work"]){
    work++;
    [myArr replaceObjectAtIndex:x withObject:[NSString strinWithFormat:@"%@(%i)", r, work]];
    }
    else if([r isEqualToString:@"home"]){
    home++;
    [myArr replaceObjectAtIndex:x withObject:[NSString strinWithFormat:@"%@(%i)", r, home]];
    }
    else if([r isEqualToString:@"mobile"]){
    mobile++;

    [myArr replaceObjectAtIndex:x withObject:[NSString strinWithFormat:@"%@(%i)", r, mobile]];

    }
    }

Best of luck

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文