當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Swift Substring hasSuffix(_:)用法及代碼示例

實例方法

hasSuffix(_:)

返回一個布爾值,指示字符串是否以指定的後綴結尾。

聲明

func hasSuffix<Suffix>(_ suffix: Suffix) -> Bool where Suffix : StringProtocol

返回值

true 如果字符串以 suffix 結尾;否則,false

參數

suffix

針對此字符串進行測試的可能後綴。

詳述

比較是區分大小寫和 Unicode 安全的。區分大小寫的比較隻會匹配對應字符大小寫相同的字符串。


let plans = "Let's meet at the café"


// Case sensitive
print(plans.hasSuffix("Café"))
// Prints "false"

Unicode-safe 比較匹配 Unicode 擴展字素簇,而不是用於組成它們的代碼點。下麵的示例使用兩個具有不同形式的"é" 字符的字符串——第一個使用組合形式,第二個使用分解形式。


// Unicode safe
let composedCafe = "café"
let decomposedCafe = "cafe\u{0301}"


print(plans.hasSuffix(composedCafe))
// Prints "true"
print(plans.hasSuffix(decomposedCafe))
// Prints "true"

可用版本

iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+

相關用法


注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 Substring hasSuffix(_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。