「Swift」hasPrefixでプレフィックスを確認する
書式
対象文字列.hasPrefix(プレフィックス文字)
使用例
let cft = "https://arkgame.com" print(cft.hasPrefix("HTTPS")) print(cft.hasPrefix("https")) print(cft.hasPrefix("https:")) print(cft.hasPrefix("HttpS")) print(cft.uppercased().hasPrefix("htt".uppercased()))
結果
false
true
true
false
true