| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
cezheng
9年前发布

Swift 2.0 和Python一样方便的正则表达式PySwiftyRegex

PySwiftyRegex让你用Swift也可以像Python一样简洁高效地作正则处理。Python的re模块常用的方法都有实现,包括split, search, find_all, sub等。彻底抛弃NSRegularExpression那套冗长的API吧。

项目地址: https://github.com/cezheng/PySwiftyRegex

简单的例子

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 "  }

详细请见github的中文README: https://github.com/cezheng/PySwiftyRegex/blob/master/README-zh.md

可以通过CocoaPods,Carthage等包管理器安装。

CocoaPods
pod 'PySwiftyRegex', '~> 0.1.0'

Carthage
github "cezheng/PySwiftyRegex" ~> 0.1.0


 本文由用户 cezheng 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1442587115868.html
正则表达式 Swift IOS Python Regex 开源 Apple Swift开发 Github