swift中的正则表达式小结

作为一门先进的编程语言,Swift 可以说吸收了众多其他先进语言的优点,但是有一点却是让人略微失望的,就是 Swift 至今为止并没有在语言层面上支持正则表达式

正则表达式的用处:

判断给定的字符串是否符合某一种规则(专门用于操作字符串)

- 电话号码,电子邮箱,URL...

- 可以直接百度别人写好的正则

- 别人真的写好了,而且测试过了,我们可以直接用

- 要写出没有漏洞正则判断,需要大量的测试,通常最终结果非常负责

过滤筛选字符串,网络爬虫

替换文字,QQ聊天,图文混排

语法规则

swift中的正则表达式小结

swift中的正则表达式小结

使用过程

1、创建规则
2、创建正则表达式对象
3、开始匹配

代码示例

private func check(str: String) { // 使用正则表达式一定要加try语句 do { // - 1、创建规则 let pattern = "[1-9][0-9]{4,14}" // - 2、创建正则表达式对象 let regex = try NSRegularExpression(pattern: pattern, options: NSRegularExpressionOptions.CaseInsensitive) // - 3、开始匹配 let res = regex.matchesInString(str, options: NSMatchingOptions(rawValue: 0), range: NSMakeRange(0, str.characters.count)) // 输出结果 for checkingRes in res { print((str as NSString).substringWithRange(checkingRes.range)) } } catch { print(error) } }

其他几个常用方法        

// 匹配字符串中所有的符合规则的字符串, 返回匹配到的NSTextCheckingResult数组 public func matchesInString(string: String, options: NSMatchingOptions, range: NSRange) -> [NSTextCheckingResult] // 按照规则匹配字符串, 返回匹配到的个数 public func numberOfMatchesInString(string: String, options: NSMatchingOptions, range: NSRange) -> Int // 按照规则匹配字符串, 返回第一个匹配到的字符串的NSTextCheckingResult public func firstMatchInString(string: String, options: NSMatchingOptions, range: NSRange) -> NSTextCheckingResult? // 按照规则匹配字符串, 返回第一个匹配到的字符串的范围 public func rangeOfFirstMatchInString(string: String, options: NSMatchingOptions, range: NSRange) -> NSRange

使用子类来匹配日期、地址、和URL

看官网文档解释,可以知道这个 NSDataDetector 主要用来匹配日期、地址、和URL。在使用时指定要匹配的类型

public class NSDataDetector : NSRegularExpression { // all instance variables are private /* NSDataDetector is a specialized subclass of NSRegularExpression. Instead of finding matches to regular expression patterns, it matches items identified by Data Detectors, such as dates, addresses, and URLs. The checkingTypes argument should contain one or more of the types NSTextCheckingTypeDate, NSTextCheckingTypeAddress, NSTextCheckingTypeLink, NSTextCheckingTypePhoneNumber, and NSTextCheckingTypeTransitInformation. The NSTextCheckingResult instances returned will be of the appropriate types from that list. */ public init(types checkingTypes: NSTextCheckingTypes) throws public var checkingTypes: NSTextCheckingTypes { get } } // 这个是类型选择 public static var Date: NSTextCheckingType { get } // date/time detection public static var Address: NSTextCheckingType { get } // address detection public static var Link: NSTextCheckingType { get } // link detection

NSDataDetector 获取URL示例

/** 匹配字符串中的URLS - parameter str: 要匹配的字符串 */ private func getUrl(str:String) { // 创建一个正则表达式对象 do { let dataDetector = try NSDataDetector(types: NSTextCheckingTypes(NSTextCheckingType.Link.rawValue)) // 匹配字符串,返回结果集 let res = dataDetector.matchesInString(str, options: NSMatchingOptions(rawValue: 0), range: NSMakeRange(0, str.characters.count)) // 取出结果 for checkingRes in res { print((str as NSString).substringWithRange(checkingRes.range)) } } catch { print(error) } }

".*?" 可以满足一些基本的匹配要求

如果想同时匹配多个规则 ,可以通过 "|" 将多个规则连接起来

将字符串中文字替换为表情

/** 显示字符中的表情 - parameter str: 匹配字符串 */ private func getEmoji(str:String) { let strM = NSMutableAttributedString(string: str) do { let pattern = "\\[.*?\\]" let regex = try NSRegularExpression(pattern: pattern, options: NSRegularExpressionOptions.CaseInsensitive) let res = regex.matchesInString(str, options: NSMatchingOptions(rawValue: 0), range: NSMakeRange(0, str.characters.count)) var count = res.count // 反向取出文字表情 while count > 0 { let checkingRes = res[--count] let tempStr = (str as NSString).substringWithRange(checkingRes.range) // 转换字符串到表情 if let emoticon = EmoticonPackage.emoticonWithStr(tempStr) { print(emoticon.chs) let attrStr = EmoticonTextAttachment.imageText(emoticon, font: 18) strM.replaceCharactersInRange(checkingRes.range, withAttributedString: attrStr) } } print(strM) // 替换字符串,显示到label emoticonLabel.attributedText = strM } catch { print(error) } }

TextKit 给URL高亮显示

主要用到三个类

NSTextStorage
NSLayoutManager
NSTextContainer

自定义UILabel来实现url高亮

1、定义要用到的属性

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjpfsg.html