「Swift」isEmptyで文字列が空かどうかを判断する
サンプルコード
if strCft.characters.count == 0 {
print(“文字列が空です")
}
if strCft == “" {
print(“文字列が空です")
}
if strCft.isEmpty {
print(“文字列が空です")
Coding Changes the World
サンプルコード
if strCft.characters.count == 0 {
print(“文字列が空です")
}
if strCft == “" {
print(“文字列が空です")
}
if strCft.isEmpty {
print(“文字列が空です")