{"id":31918635,"url":"https://github.com/k94ll13nn3/strinken","last_synced_at":"2025-10-13T21:14:14.792Z","repository":{"id":9874992,"uuid":"63607615","full_name":"k94ll13nn3/Strinken","owner":"k94ll13nn3","description":"A parametrized string library!","archived":false,"fork":false,"pushed_at":"2025-09-01T08:42:03.000Z","size":2637,"stargazers_count":5,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-06T03:25:52.273Z","etag":null,"topics":["c-sharp","csharp","dotnet-standard","netstandard","parametrized","parser","string","strinken"],"latest_commit_sha":null,"homepage":"https://k94ll13nn3.github.io/Strinken/","language":"C#","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/k94ll13nn3.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-07-18T13:59:19.000Z","updated_at":"2025-09-01T08:42:00.000Z","dependencies_parsed_at":"2024-04-02T07:45:12.397Z","dependency_job_id":"1df08982-44ec-4a21-800b-8bcfe8afc860","html_url":"https://github.com/k94ll13nn3/Strinken","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/k94ll13nn3/Strinken","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k94ll13nn3%2FStrinken","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k94ll13nn3%2FStrinken/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k94ll13nn3%2FStrinken/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k94ll13nn3%2FStrinken/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/k94ll13nn3","download_url":"https://codeload.github.com/k94ll13nn3/Strinken/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k94ll13nn3%2FStrinken/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017052,"owners_count":26085949,"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","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["c-sharp","csharp","dotnet-standard","netstandard","parametrized","parser","string","strinken"],"created_at":"2025-10-13T21:14:12.653Z","updated_at":"2025-10-13T21:14:14.784Z","avatar_url":"https://github.com/k94ll13nn3.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Strinken\n\n[![NuGet](https://img.shields.io/nuget/v/Strinken.svg)](https://www.nuget.org/packages/Strinken/)\n[![GitHub release](https://img.shields.io/github/release/k94ll13nn3/Strinken.svg)](https://github.com/k94ll13nn3/Strinken/releases/latest)\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/k94ll13nn3/Strinken/main/LICENSE)\n![ci.yml](https://github.com/k94ll13nn3/Strinken/workflows/.github/workflows/ci.yml/badge.svg)\n\nA parametrized string library! ([Documentation](https://k94ll13nn3.github.io/Strinken/))\n\n## Installation\n\n- Grab the latest package on [NuGet](https://www.nuget.org/packages/Strinken/).\n\n## Basic example\n\n1. Create a class that implements `ITag\u003cT\u003e` for the wanted type (a class Person with a Name property for example):\n\n    ``` csharp\n    public class NameTag : ITag\u003cPerson\u003e\n    {\n        public string Description =\u003e \"Returns the name of a Person.\";\n        public string Name =\u003e \"Name\";\n        public string Resolve(Person value) =\u003e value.Name.ToString();\n    }\n    ```\n\n2. Create a `Parser\u003cT\u003e` with this tag:\n\n    ``` csharp\n    var parser = new Parser\u003cPerson\u003e().WithTag(new NameTag());\n    ```\n\n3. Resolve a string with the parser:\n\n    ``` csharp\n    var result = parser.Resolve(\"My name is {Name}.\", new Person { Name = \"James\" });\n    // will return \"My name is James.\"\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk94ll13nn3%2Fstrinken","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fk94ll13nn3%2Fstrinken","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk94ll13nn3%2Fstrinken/lists"}