let str = "hello"
// >= <= < > != 都可以啊
if str == "hello"
{
print(str)
}
if str < "heoo"
{
print(str)
}
if str < "heoo"
{
print(str)
}
let str1 = "apple"
// 判斷是否含有前綴
if str1.hasPrefix("ap")
{
print(str1)
}
// 判斷是否含有後綴
if str1.hasSuffix("le")
{
print(str1)
}
// 轉換為大寫
let str2 = str1.uppercased()
// 轉換為小寫
let str3 = str2.lowercased();
print(str2)
print(str3)
let str4 = "255d"
// 這個不能用了啊
// let d:Int? = str4.toInt();
let d1:Int? = Int(str4);
// 強制解包失敗
// let d2:Int! = Int(str4);
print("-------->")
print(d1)
// print(d2)