您现在的位置是:首页 > 文章详情

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

日期:2017-11-20点击:397

 

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

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

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

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

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

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

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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关东升 51CTO博客,原文链接:http://blog.51cto.com/tonyguan/1746108,如需转载请自行联系原作者

原文链接:https://yq.aliyun.com/articles/406485
关注公众号

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。

持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。

转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。

文章评论

共有0条评论来说两句吧...

文章二维码

扫描即可查看该文章

点击排行

推荐阅读

最新文章