📜  如何在swift代码示例中请求字符串的前缀

📅  最后修改于: 2022-03-11 15:00:59.949000             🧑  作者: Mango

代码示例1
let str = "Hello! Swift"str.prefix(6) // "Hello!"