{"id":19975876,"url":"https://github.com/jfjlaros/textparser","last_synced_at":"2025-10-24T01:32:00.575Z","repository":{"id":56735540,"uuid":"523420142","full_name":"jfjlaros/textparser","owner":"jfjlaros","description":"Line based text parser.","archived":false,"fork":false,"pushed_at":"2023-04-21T14:08:19.000Z","size":61,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-12T09:47:17.624Z","etag":null,"topics":["arduino","csv","delimited","line","tsv","type-safe","value"],"latest_commit_sha":null,"homepage":"","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/jfjlaros.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":".github/CODE_OF_CONDUCT.md","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":"2022-08-10T16:37:25.000Z","updated_at":"2024-02-14T04:05:31.000Z","dependencies_parsed_at":"2024-11-13T03:20:54.572Z","dependency_job_id":"2c0a145e-49eb-49dc-a17d-b885c8b06905","html_url":"https://github.com/jfjlaros/textparser","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfjlaros%2Ftextparser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfjlaros%2Ftextparser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfjlaros%2Ftextparser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jfjlaros%2Ftextparser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jfjlaros","download_url":"https://codeload.github.com/jfjlaros/textparser/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241411477,"owners_count":19958746,"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":["arduino","csv","delimited","line","tsv","type-safe","value"],"created_at":"2024-11-13T03:20:45.679Z","updated_at":"2025-10-24T01:32:00.495Z","avatar_url":"https://github.com/jfjlaros.png","language":"C++","readme":"Line based text parser.\n=======================\n\n.. image:: https://img.shields.io/github/last-commit/jfjlaros/textparser.svg\n   :target: https://github.com/jfjlaros/textparser/graphs/commit-activity\n.. image:: https://github.com/jfjlaros/textparser/actions/workflows/arduino-package.yml/badge.svg\n   :target: https://github.com/jfjlaros/textparser/actions/workflows/arduino-package.yml\n.. image:: https://readthedocs.org/projects/arduinotextparser/badge/?version=latest\n   :target: https://arduinotextparser.readthedocs.io/en/latest\n.. image:: https://img.shields.io/github/release-date/jfjlaros/textparser.svg\n   :target: https://github.com/jfjlaros/textparser/releases\n.. image:: https://img.shields.io/github/release/jfjlaros/textparser.svg\n   :target: https://github.com/jfjlaros/textparser/releases\n.. image:: https://www.ardu-badge.com/badge/textparser.svg\n   :target: https://www.ardu-badge.com/textparser\n.. image:: https://img.shields.io/github/languages/code-size/jfjlaros/textparser.svg\n   :target: https://github.com/jfjlaros/textparser\n.. image:: https://img.shields.io/github/languages/count/jfjlaros/textparser.svg\n   :target: https://github.com/jfjlaros/textparser\n.. image:: https://img.shields.io/github/languages/top/jfjlaros/textparser.svg\n   :target: https://github.com/jfjlaros/textparser\n.. image:: https://img.shields.io/github/license/jfjlaros/textparser.svg\n   :target: https://raw.githubusercontent.com/jfjlaros/textparser/master/LICENSE.md\n\n----\n\nThis library provides a simple way to parse line based data.\n\n**Features:**\n\n- Easy to use.\n- Support for all types of delimiters and line endings.\n- Support for arbitrary boolean value notation.\n- Support for categorical data.\n- Support for integers in any base.\n- Tiny overhead compared to dedicated solutions.\n- Type safe.\n\nPlease see ReadTheDocs_ for the latest documentation.\n\n\nQuick start\n-----------\n\nA ``TextParser`` object is initialised with a delimiter, which can consist of\nmore than one symbol.\n\n.. code-block:: cpp\n\n    #include \u003ctextparser.h\u003e\n\n    TextParser parser(\", \");  // Delimiter is a comma followed by a space.\n\nIf all fields are of the same type, we can use an array.\n\n.. code-block:: cpp\n\n    int a[5];\n    parser.parseLine(\"1, 2, 3, 4, 5\", a);\n\nIf the fields have different types, we can use multiple variables.\n\n.. code-block:: cpp\n\n    char a[4];\n    int b;\n    double c;\n    parser.parseLine(\"one, 2, 3.4\", a, b, c);\n\n\n.. _ReadTheDocs: https://arduinotextparser.readthedocs.io\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjfjlaros%2Ftextparser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjfjlaros%2Ftextparser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjfjlaros%2Ftextparser/lists"}