PySwiftyRegex:以Python方式轻松处理Swift中的Regex 源码
PySwiftyRegex 在Swift中以Pythonic方式轻松处理Regex。 这很容易 import PySwiftyRegex if let m = re. search ( " [Tt]his is (.*?)easy " , " I think this is really easy!!! " ) { m. group () // "this is really easy" m. group ( 1 ) // "really " } 请参阅。 要求 iOS 7.0以上/ Mac OS X 10.9以上 Xcode 8.0+ <对于Swift 2.3,请使用版本。 安装 嵌入式框架要求iOS 8或OS X Mavericks的最低部署目标。 要将PySwiftyRegex与针对iOS 7的项目一起使用,请考虑使用或将文件复制到您的项目中。 CocoaPods(iO
用户评论