我有一个这样的字符串:
"initWithType:bundleIdentifier:uniqueIdentifier:"
和两个这样的列表:
['long long', 'id', 'id'] ['arg1', 'arg2', 'arg3']
并希望以字符串结尾:
"initWithType:(long long)arg1 bundleIdentifier:(id)arg2 uniqueIdentifier:(id)arg3"
如您所见,我实际上需要将每个第 n 个分号替换为每个列表中的第 n 个字符串(加上一些带有括号和空格的格式)。
我一直在尝试使用.format
和*
拆包运算符,但收效甚微。
海绵宝宝撒
相关分类