在 NSString 中分隔数字以显示电话号码
我有一个 NSString
包含这样的内容:
4434332124
我怎样才能把它变成这样的东西?
443-433-2124
I have an NSString
that holds something like this:
4434332124
How can I make that into something like this?
443-433-2124
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只需使用 NSString 的 stringWithFormat 方法,将电话号码分割成单独的子字符串,然后将整个字符串粘合到格式字符串中,只需两行即可完成此操作。像这样的东西:
编辑:工作代码
This can be done in only two lines just use NSString's stringWithFormat method and chop up the phone number into individual substrings and glue the whole thing together in your format string. Something like this:
EDIT: Working Code
如果您只想对您确定的 10 位数字进行简单的快速替换,请尝试此正则表达式示例 (iOS >= 3.2)。
If you want to just do a simple quick replacement on what you are sure is a 10 digit number then try this regex example (iOS >= 3.2).
不像尝试用 NSFormatter 做某事那么漂亮(尽管除非你将它子类化,否则我没有看到一个明显的方法让它做电话号码之类的事情),但你可以这样做:
Not as pretty as trying to do something with NSFormatter (though unless you subclass it I didn't see an obvious way to get it to do something like phone numbers) but you could do this: