📚 doi - Awesome Go Library for Text Processing

Go Gopher mascot for doi

Document object identifier (doi) parser in Go

🏷️ Text Processing
📂 Parsers/Encoders/Decoders
0 stars
View on GitHub 🔗

Detailed Description of doi

doi

GoDoc

dealing with dois in go

Usage

d, err := doi.Parse("11.1038/123456")
if err != nil {
    println(d.ToString())
}
if d.IsValid() {
    println("We are happy!")
}