swift3 0 關於字串

2021-07-23 14:15:57 字數 1457 閱讀 4948

//: playground - noun: a place where people can play

import uikit

//字串字面量

func zfczml()" // $, unicode 標量 u+0024

_ = "\u" // ♥, unicode 標量 u+2665

_ = "\u" // ��, unicode 標量 u+1f496//初始化空字串

func cshkzfc()

_ = string.characters.last

_ = string.characters.first

_ = string.components(separatedby: "m") //相比較u//計算字元數量

func jszfsl()

//示例常用 字元數量限制//連線字串和字元

func ljzfchzf()

if !string1.hassuffix(string2)

if string1 != string2 //字串大小寫

func zfcdxx()//訪問和修改乙個字串你訪問和修改乙個字串通過其方法和屬性,或使用下標語法

//插入和刪除

func fwxgzif(){

let greeting = "guten tag!"

greeting[greeting.startindex]

greeting.startindex

greeting[greeting.index(before: greeting.endindex)]

greeting.index(before: greeting.endindex)

greeting[greeting.index(after: greeting.startindex)]

let index = greeting.index(greeting.startindex, offsetby: 1)

greeting[index]

//插入和刪除

var welcome = "hello"

welcome.insert("!", at: welcome.endindex)

welcome.insert(contentsof:" there".characters, at: welcome.index(before: welcome.endindex))

welcome.remove(at: welcome.index(before: welcome.endindex))

// welcome now equals "hello there"

let range = welcome.index(welcome.endindex, offsetby: -6)..welcome.removesubrange(range)

Swift3 0語言教程組合字串

其中,astring用來指定乙個字串。import foundation var a nsstring string hello,print 組合前 a 組合字串 print 組合後 b 執行結果如下 組合前 hello,組合後 hello,world 2 padding tolength with...

Swift3 0 字串常用整理

swift3.0 字串常用整理 1 判斷前字尾,hasperfix,hassuffix 返回的是bool值 str.hasprefix www.字首 str.hassuffix com 字尾 2 判斷兩個字串是否相等,返回的是bool值 let str1 www let str2 com if st...

swift3 0字串擷取,字串處理

1.擷取前面三個字串,要求輸出結果為abc let str abcdefghi let index str.index str.startindex,offsetby 3 獲取字元d的索引 let result str.substring to index 從起始擷取到索引的所有字串,即abc,注意...