{"id":23124977,"url":"https://github.com/matusollah/slicestrconv","last_synced_at":"2025-04-04T05:09:52.061Z","repository":{"id":219605876,"uuid":"749448066","full_name":"MatusOllah/slicestrconv","owner":"MatusOllah","description":"strconv for slices","archived":false,"fork":false,"pushed_at":"2024-01-28T16:21:34.000Z","size":4,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-09T16:22:48.404Z","etag":null,"topics":["boolean","conversion","float","go","golang","int","parser","slice","strconv","uint"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MatusOllah.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-28T16:08:03.000Z","updated_at":"2024-01-31T19:51:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"7c04843e-ab2a-4558-8a2e-32d42ada0841","html_url":"https://github.com/MatusOllah/slicestrconv","commit_stats":null,"previous_names":["matusollah/slicestrconv"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatusOllah%2Fslicestrconv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatusOllah%2Fslicestrconv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatusOllah%2Fslicestrconv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatusOllah%2Fslicestrconv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MatusOllah","download_url":"https://codeload.github.com/MatusOllah/slicestrconv/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247123107,"owners_count":20887261,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boolean","conversion","float","go","golang","int","parser","slice","strconv","uint"],"created_at":"2024-12-17T08:12:10.057Z","updated_at":"2025-04-04T05:09:52.044Z","avatar_url":"https://github.com/MatusOllah.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# slicestrconv\n\n[![Go Reference](https://pkg.go.dev/badge/github.com/MatusOllah/slicestrconv.svg)](https://pkg.go.dev/github.com/MatusOllah/slicestrconv) [![Go Report Card](https://goreportcard.com/badge/github.com/MatusOllah/slicestrconv)](https://goreportcard.com/report/github.com/MatusOllah/slicestrconv)\n\n**slicestrconv** is a string to slice converting / parsing library for Go. Like strconv but for slices.\n\n## Basic Usage\n\n```go\npackage main\n\nimport (\n    \"fmt\"\n\n    \"github.com/MatusOllah/slicestrconv\"\n)\n\nfunc main() {\n    boolSlice, err := slicestrconv.ParseBoolSlice(\"[true, false, true]\")\n    if err != nil {\n        panic(err)\n    }\n\n    fmt.Println(boolSlice) // [true false true]\n\n    intSlice, err := slicestrconv.ParseIntSlice(\"[1, 2, 3, 420, 69]\", 10)\n    if err != nil {\n        panic(err)\n    }\n\n    fmt.Println(intSlice) // [1 2 3 420 69]\n\n    floatSlice, err := slicestrconv.ParseFloatSlice(\"[1.1, 2.2, 3.3, 3.14]\", 10)\n    if err != nil {\n        panic(err)\n    }\n\n    fmt.Println(floatSlice) // [1.1 2.2 3.3 3.14]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatusollah%2Fslicestrconv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatusollah%2Fslicestrconv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatusollah%2Fslicestrconv/lists"}