本文實例為大家分享了特殊字符替換電話號碼中某一部分的方法,IOS利用-號替換電話號碼中間四位,供大家參考,具體內容如下
一、效果圖
二、代碼
RootViewController.m
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. //電話號碼 UILabel *telLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 100, 200, 20)]; telLabel.textColor = [UIColor grayColor]; telLabel.text = @"13793333281"; //字符串的截取 NSString *string = [telLabel.text substringWithRange:NSMakeRange(4,4)]; //字符串的替換 telLabel.text = [telLabel.text stringByReplacingOccurrencesOfString:string withString:@"----"]; [self.view addSubview:telLabel]; }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。