我正在尝试查找与指定值匹配的字符串的索引。一种方法是使用实例方法,但这假设我正在使用数组;我正在使用多行字符串文字。本主题的大部分documentation都涉及使用预定义的值在Swift中制作多行字符串文字。
假设我有以下多行字符串文字:
"""
Product 1 description
Product 1 color
Product 2 description
Product 2 color
"""
我想定义两个变量:一个用于检查全局变量是否与上面列表中的字符串匹配,另一个用作索引。例如:
[In] [1]: let keyword = "Product 2 description"
[In] [2]: if keyword in multi-line string literal {
print(index of match as integer)
}
[Out] [3]: 2
我已经设法通过使用Levenshtein distance计算器来查找和定义匹配项来完成程序中的第一个变量,但是我无法完成第二个变量。我已经尝试拆分列表并制作元组,但是当列表中的0
时,每个字符串都会产生enumerated()
的索引。也就是说,如果有人可以帮助我任何以下内容,我将非常感谢您的帮助:
答案 0 :(得分:3)
最简单的解决方案是通过分隔行
来创建字符串数组let string =
"""
Product 1 description
Product 1 color
Product 2 description
Product 2 color
"""
let list = string.components(separatedBy: CharacterSet.newlines)
然后你可以用
获得索引let indexOfProduct2Description = list.index(of: "Product 2 description")