iOS 键值存储 ZXKVStore
- 授权协议: MIT
- 开发语言: Swift
- 操作系统: iOS
- 软件首页: https://github.com/zhangxigithub/ZXKVStore
软件介绍
ZXKVStore 是一个简单易用的键值数据存储。
使用:
println(ZXKV["homepage"]) //nil ZXKV["homepage"] = "http://www.zhangxi.me" // store a value to the key println(ZXKV["homepage"]) //http://www.zhangxi.me let array = ["abc","123"] ZXKV["array"] = array println(ZXKV["array"]) //["abc","123"] //any object which implemented NSCoding can be stored.
Flexible Pattern Matching in Strings
Gonzalo Navarro、Mathieu Raffinot / Cambridge University Press / 2007-7-30 / USD 64.99
String matching problems range from the relatively simple task of searching a single text for a string of characters to searching a database for approximate occurrences of a complex pattern. Recent ye......一起来看看 《Flexible Pattern Matching in Strings》 这本书的介绍吧!
