《从零开始学Swift》学习笔记(Day 14)——字符串的插入删除和替换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《从零开始学Swift》学习笔记(Day 14)——字符串的插入删除和替换相关的知识,希望对你有一定的参考价值。

原创文章,欢迎转载。转载请注明:关东升的博客

 

对应可变字符串可以插入、删除和替换,String提供了几个方法可以帮助实现这些操作。这些方法如下:

splice(_:atIndex:)。在索引位置插入字符串。

insert(_:atIndex:)。在索引位置插入字符。

removeAtIndex(_:)。在索引位置删除字符。

removeRange(_:)。删除指定范围内的字符串。

replaceRange(_:,with: String) 。使用字符串或字符替换指定范围内的字符串。

代码:

var str ="Swift"
print("原始字符串:\(str)")
 
str.splice("Objective-Cand ".characters, atIndex: str.startIndex) 
print("插入字符串后:\(str)")
 
str.insert(".",atIndex: str.endIndex)     
print("插入.字符后:\(str)")
 
str.removeAtIndex(str.endIndex.predecessor())
print("删除.字符后:\(str)")
 
var startIndex =str.startIndex            
var endIndex =advance(startIndex, 9)      
var range =startIndex...endIndex      
 
str.removeRange(range)                 
print("删除范围后:\(str)")
 
startIndex =str.startIndex
endIndex =advance(startIndex, 0)
range =startIndex...endIndex       
 
str.replaceRange(range,with: "C++")   
print("替换范围后:\(str)")


输出结果:

原始字符串:Swift

插入字符串后:Objective-C and Swift

插入.字符后:Objective-Cand Swift.

删除.字符后:Objective-Cand Swift

删除范围后:C and Swift

替换范围后:C++ and Swift

 

欢迎关注关东升新浪微博@tony_关东升。
关注智捷课堂微信公共平台,了解最新技术文章、图书、教程信息
                              技术分享

更多精品iosCocos、移动设计课程请关注智捷课堂官方网站:http://www.zhijieketang.com
智捷课堂论坛网站:http://51work6.com/forum.php

 


本文出自 “关东升-iOS技术顾问” 博客,请务必保留此出处http://tonyguan.blog.51cto.com/701759/1746108

以上是关于《从零开始学Swift》学习笔记(Day 14)——字符串的插入删除和替换的主要内容,如果未能解决你的问题,请参考以下文章

《从零开始学Swift》学习笔记(Day 17)——Swift中数组集合

《从零开始学Swift》学习笔记(Day 16)——字典集合

《从零开始学Swift》学习笔记(Day 31)——存储属性

《从零开始学Swift》学习笔记(Day 29)——访问级别

《从零开始学Swift》学习笔记(Day 26)——可选链

《从零开始学Swift》学习笔记(Day 2)——使用Web网站编写Swift代码