博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS-字符串的连接
阅读量:5061 次
发布时间:2019-06-12

本文共 638 字,大约阅读时间需要 2 分钟。

越努力.越幸福.----willingseal.

(一)连接两个字符串

  NSString  *type=[ self . type objectAtIndex:typeRow];

    NSString *subtype=[self.subtypeobjectAtIndex:subtypeRow];
    
   
(1)  NSString *typesub = [NSString stringWithFormat:@"%@>%@",type,subtype];
    
(2)  NSString *typesub = [type stringByAppendingString:subtype];
    
(3) NSString *typesub = [type stringByAppendingFormat:@"%@>%@",type,subtype];
    

     
NSLog
(
@"%@"
,typesub);
打印:(1)
交通
>
出租车费
(2)
交通出租车费
(3)
交通交通
>
出租车费
(二)连接三个字符串

  NSString  *a= @"abc" ;

    

   
NSString
 *typesub = [type 
stringByAppendingFormat
:
@"%@>%@>%@"
,type,subtype,a];
打印:
交通交通
>
出租车费
>abc

 

 

 

转载于:https://www.cnblogs.com/dyllove98/archive/2013/06/05/3119857.html

你可能感兴趣的文章
pexpect学习阶段
查看>>
做最多的,展示最好的
查看>>
会员未登录显示ID=1的会员信息 解决方案
查看>>
Git与Repo入门(转载)
查看>>
夺命雷公狗---linux NO:10 linux的文件与目录的基本操作
查看>>
Count the string
查看>>
poj 1438--One-way Traffic(边的双连通)
查看>>
vue 城市列表与字母表联动
查看>>
一段js代码解决网页内容无法复制的问题
查看>>
JS九大内置对象
查看>>
144 Binary Tree Preorder Travesal
查看>>
Linux信号实践(5) --时间与定时器
查看>>
题---
查看>>
Linux常用命令
查看>>
20151213调转页面以及页面传值
查看>>
你的密码是什么?
查看>>
五子棋Web版的开发(一)---搭建IDEA SSH环境
查看>>
hdu 1159 Common Subsequence(最长公共子序列 DP)
查看>>
POJ 2251 Dungeon Master
查看>>
重要道路
查看>>