:
var str1 = "hello"
var str2 = "Hello"
if str1 < str2 { print("hello is less than Hello")}
else {print("hello is more than Hello")}
在什么基础上发现str1大于str2?
答案 0 :(得分:6)
使用每个字符的Unicode值逐个字符地比较两个字符串。由于h
的代码(U + 0068)高于H
(U + 0048),因此str1
的“大于”str2
。
根据马丁在问题下方的评论,它比我说的稍微复杂一些。有关详细信息,请参阅What does it mean that string and character comparisons in Swift are not locale-sensitive?。
答案 1 :(得分:4)
根据比较快速字符串 Unicode Collation Algorithm, 这意味着(有效),
在您的示例中,"hello
“和"Hello"
具有Unicode值
hello: U+0068, U+0065, U+006C, U+006C, U+006F
Hello: U+0048, U+0065, U+006C, U+006C, U+006F
因此"Hello" < "hello"
。
“标准化”或“分解”是相关的,例如对于角色 带变音符号。例如,
a = U+0061
ä = U+00E4
b = U+0062
有分解形式
a: U+0061
ä: U+0061, U+0308 // LATIN SMALL LETTER A + COMBINING DIAERESIS
b: U+0062
因此"a" < "ä" < "b"
。
有关详情和示例,请参阅What does it mean that string and character comparisons in Swift are not locale-sensitive?
答案 2 :(得分:0)
我认为它是基于Lexicographical Order。https://en.wikipedia.org/wiki/Lexicographical_order
答案 3 :(得分:0)
在Swift 4.2中- // Unicode值使您了解为什么“ hello”大于“ Hello”,因为两个字符串的长度相同。
var str1 = "hello"
var str2 = "Hello"
if (str1 < str2){
print("hello is less than Hello")
}
else {
print("hello is more than Hello")
}
print(str1.unicodeScalars[str1.unicodeScalars.startIndex].value)
print(str2.unicodeScalars[str2.unicodeScalars.startIndex].value)