Last active
June 20, 2019 08:47
-
-
Save AppleCEO/878b41d57a09afa0bc1f5a257c8ebcb3 to your computer and use it in GitHub Desktop.
subsequence example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let string = "a b c d e f" | |
| let stringSplited = string.split(separator: " ") | |
| // stringSplited is String.SubSequence type |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment