如何在数组中找到相似的字符串并重命名字符串?
我想在数组/字典中找到类似的字符串,并通过在字符串中添加后缀来重命名它们。例如,假设我的数组/字典包含这样的字符串:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我不知道字典,但对于数组你可以做这样的事情。
祝你好运
Well, i don't know about a dictionary, but for an array you could do something like this.
Best of luck