Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/polera/Gonameparts
Takes a full name and splits it into individual name parts
https://github.com/polera/Gonameparts
Last synced: 20 days ago
JSON representation
Takes a full name and splits it into individual name parts
- Host: GitHub
- URL: https://github.com/polera/Gonameparts
- Owner: polera
- License: mit
- Created: 2015-05-17T05:20:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T14:12:59.000Z (2 months ago)
- Last Synced: 2024-09-10T20:47:35.785Z (2 months ago)
- Language: Go
- Homepage:
- Size: 47.9 KB
- Stars: 42
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gonameparts
gonameparts splits a human name into individual parts. This is useful when dealing with external data sources that provide names as a single value, but you need to store the discrete parts in a database for example.[![GoDoc](https://godoc.org/github.com/polera/gonameparts?status.svg)](https://godoc.org/github.com/polera/gonameparts)
Author
==
James PoleraDependencies
==
No external dependencies. Uses Go's standard packagesExample
==```go
package mainimport (
"encoding/json"
"fmt""github.com/polera/gonameparts"
)func main() {
// Parsing a name and printing its parts
nameString := gonameparts.Parse("Thurston Howell III")
fmt.Println("FirstName:", nameString.FirstName)
fmt.Println("LastName:", nameString.LastName)
fmt.Println("Generation:", nameString.Generation)
// Output:
// FirstName: Thurston
// LastName: Howell
// Generation: III// Parse a name with multiple "also known as" aliases, output JSON
multipleAKA := gonameparts.Parse("Tony Stark a/k/a Ironman a/k/a Stark, Anthony a/k/a Anthony Edward \"Tony\" Stark")
jsonParts, _ := json.Marshal(multipleAKA)
fmt.Printf("%v\n", string(jsonParts))
/* Output:
{
"aliases": [
{
"aliases": null,
"first_name": "Ironman",
"full_name": "Ironman",
"generation": "",
"last_name": "",
"middle_name": "",
"nickname": "",
"provided_name": " Ironman ",
"salutation": "",
"suffix": ""
},
{
"aliases": null,
"first_name": "Anthony",
"full_name": "Anthony Stark",
"generation": "",
"last_name": "Stark",
"middle_name": "",
"nickname": "",
"provided_name": " Stark, Anthony ",
"salutation": "",
"suffix": ""
},
{
"aliases": null,
"first_name": "Anthony",
"full_name": "Anthony Edward Stark",
"generation": "",
"last_name": "Stark",
"middle_name": "Edward",
"nickname": "\"Tony\"",
"provided_name": " Anthony Edward \"Tony\" Stark",
"salutation": "",
"suffix": ""
}
],
"first_name": "Tony",
"full_name": "Tony Stark",
"generation": "",
"last_name": "Stark",
"middle_name": "",
"nickname": "",
"provided_name": "Tony Stark a/k/a Ironman a/k/a Stark, Anthony a/k/a Anthony Edward \"Tony\" Stark",
"salutation": "",
"suffix": ""
}*/}
```