【Swift 60秒】65 - Properties and methods of strings

0x00 Lesson

We’ve used lots of strings so far, and it turns out they are structs - they have their own methods and properties we can use to query and manipulate the string.

First, let’s create a test string:

let string = "Do or do not, there is no try."

You can read the number of characters in a string using its count property:

print(string. count)

They have a hasPrefix() method that returns true if the string starts with specific letters:

print(string.hasPrefix("Do"))

You can uppercase a string by calling its uppercased() method:

print(string.uppercased())

And you can even have Swift sort the letters of the string into an array:

print(string.sorted())

Strings have lots more properties and methods - try typin string. to bring up Xcode’s code completion options.


0x01 我的小作品

欢迎体验我的作品之一:小笔记-XNote
笔记一步到位!
App Store 搜索即可~


猜你喜欢

转载自blog.csdn.net/xjh093/article/details/128282672