gpt4 book ai didi

iphone - 如何应用正则表达式和/或清理电话线?

转载 作者:行者123 更新时间:2023-11-29 05:03:17 25 4
gpt4 key购买 nike

我有一个包含传真电话号码的 NSString。有时我会输入不同的格式,例如:(877) xxx-xxxx 或 877-xxx-xxxx。

如何清理 NSSString 以便我得到的只是 XXXxxxxxx。

谢谢

最佳答案

使用 NSCharacterSetNSMutableCharacterSet您可以通过两种方式解决这个问题。

  1. 如果您已经知道要删除的字符。

    NSCharacterSet *charSet = [NSCharacterSet characterSetWithCharactersInString:@"+-(),. "];
    NSArray *arrayWithNumbers = [str componentsSeparatedByCharactersInSet:charSet];
    NSString *numberStr = [arrayWithNumbers componentsJoinedByString:@""];
  2. 如果您不认识这些字符,可以使用现有的不同字符集

    NSMutableCharacterSet *charSet = [NSMutableCharacterSet new];
    [charSet formUnionWithCharacterSet:[NSCharacterSet whitespaceCharacterSet]];
    [charSet formUnionWithCharacterSet:[NSCharacterSet punctuationCharacterSet]];
    [charSet formUnionWithCharacterSet:[NSCharacterSet symbolCharacterSet]];
    NSArray *arrayWithNumbers = [str componentsSeparatedByCharactersInSet:charSet];
    NSString *numberStr = [arrayWithNumbers componentsJoinedByString:@""];

关于iphone - 如何应用正则表达式和/或清理电话线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6326971/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com