iOS-字符串的連接


越努力.越幸福.----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

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM