代码笔记替换电话号码中间4位为-号
Posted 菜鸟and小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码笔记替换电话号码中间4位为-号相关的知识,希望对你有一定的参考价值。
一,效果图。
二,代码。
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];
}
以上是关于代码笔记替换电话号码中间4位为-号的主要内容,如果未能解决你的问题,请参考以下文章