An open API service indexing awesome lists of open source software.

https://github.com/neoneye/swiftyversion

Scan "Semantic Versioning" strings without depending on regular expressions nor NSScanner
https://github.com/neoneye/swiftyversion

nsscanner parser swift swift4 version

Last synced: 9 months ago
JSON representation

Scan "Semantic Versioning" strings without depending on regular expressions nor NSScanner

Awesome Lists containing this project

README

          

# SwiftyVersion

Create a `Version` from a `String`

```swift
import SwiftyVersion
// ...
let version = Version("1.2.3")!
print("The version is \(version)")
```