swift .contains字符串工作但有错误

问题描述 投票:-3回答:1

我有一个可以运行的游乐场代码但它同时出错。我不太清楚为什么因为我对swift不太熟悉。

我想在下面写一个if语句来检查junior是否有后缀“Jr.”

if junior.contains("Jr.") {
    print("We found a second generation name!")
}else{
    print("No we didn't find a second generation name.")
}

我使用了.contains方法 - 虽然它给我一个如下错误。 enter image description here

swift
1个回答
0
投票

这应该是固定的

import Foundation
© www.soinside.com 2019 - 2024. All rights reserved.