有没有办法告诉Swift检查字符串是否以符号结尾。
例如,如何在swift中编写下面的代码?
var string = "myString*"
if string ends with "*" {
.... do something
}
答案 0 :(得分:2)
您可以使用hasSuffix
功能。
let string = "Hello world!"
if string.hasSuffix("!") {
// do something
}
答案 1 :(得分:1)
String
有一个方法hasSuffix()
var string = "myString*"
if string.hasSuffix("*") {
.... do something
}