{"id":13803727,"url":"https://github.com/hi5/CSV","last_synced_at":"2025-05-13T16:32:30.706Z","repository":{"id":150288431,"uuid":"98017356","full_name":"hi5/CSV","owner":"hi5","description":"CSV - AutoHotkey library for working with CSV Files","archived":false,"fork":false,"pushed_at":"2022-09-25T14:59:14.000Z","size":10,"stargazers_count":59,"open_issues_count":2,"forks_count":10,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-20T09:15:52.947Z","etag":null,"topics":["autohotkey","csv"],"latest_commit_sha":null,"homepage":"https://autohotkey.com/boards/viewtopic.php?f=6\u0026t=34853","language":"AutoHotkey","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hi5.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-07-22T08:12:43.000Z","updated_at":"2024-08-22T03:25:25.000Z","dependencies_parsed_at":"2023-06-01T08:36:27.190Z","dependency_job_id":null,"html_url":"https://github.com/hi5/CSV","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hi5%2FCSV","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hi5%2FCSV/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hi5%2FCSV/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hi5%2FCSV/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hi5","download_url":"https://codeload.github.com/hi5/CSV/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253981933,"owners_count":21994361,"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":["autohotkey","csv"],"created_at":"2024-08-04T01:00:37.287Z","updated_at":"2025-05-13T16:32:25.697Z","avatar_url":"https://github.com/hi5.png","language":"AutoHotkey","readme":"# CSV - AutoHotkey library for working with CSV Files\n\nThis CSV library was developed by trueski and Kdoske - the original source can be found here http://www.autohotkey.com/forum/viewtopic.php?p=329126#329126 and https://autohotkey.com/board/topic/51681-csv-library-lib/\n(archived forum links, the code posted there is no longer valid due to errors caused by upgrading the forum software.)\n\nThis version includes bugfixes from:\n\n* http://www.autohotkey.com/forum/viewtopic.php?p=400669#400669 and other(s)\n* http://www.autohotkey.com/board/topic/51681-csv-library-lib/page-4#entry596685\n\nand incorporated in this library are:\n\n* Format4CSV by Rhys - https://autohotkey.com/board/topic/24859-function-convert-string-for-csv-format4csv-beta-1/\n* Delimiter Seperated Values by DerRaphael - https://autohotkey.com/board/topic/30102-how-can-i-parse-a-csv-file-with-multi-line-values/#entry191846\n\n## CSV Functions\n\n* CSV_Load(FileName, CSV_Identifier, Delimiter) ; Load CSV file into memory, must complete first.\n* CSV_TotalRows(CSV_Identifier) ; Return total number of rows\n* CSV_TotalCols(CSV_Identifier) ; Return total number of columns\n* CSV_Delimiter(CSV_Identifier) ; Return the delimiter used\n* CSV_FileName(CSV_Identifier) ; Return the filename\n* CSV_Path(CSV_Identifier) ; Return the path\n* CSV_FileNamePath(CSV_Identifier) ; Return the filename with the full path\n* CSV_Save(FileName, CSV_Identifier, OverWrite?) ; Save CSV file\n* CSV_DeleteRow(CSV_Identifier, RowNumber) ; Delete a row\n* CSV_AddRow(CSV_Identifier, \"Cell1,Cell2...\") ; Add a row\n* CSV_DeleteColumn(CSV_Identifier, ColNumber) ; Delete a column\n* CSV_AddColumn(CSV_Identifier, \"Cell1,Cell2...\") ; Add a column\n* CSV_ModifyCell(CSV_Identifier, NewValue,Row, Col) ; Modify an existing cell\n* CSV_ModifyRow(CSV_Identifier, \"NewValue1,NewValue2...\", RowNumber) ; Modify an existing row\n* CSV_ModifyColumn(CSV_Identifier, \"NewValue1,NewValue2...\", ColNumber)) ; Modify an existing column\n* CSV_Search(CSV_Identifier, SearchText, Instance) ; Search for text within\n* CSV_SearchRow(CSV_Identifier, SearchText, RowNumber, Instance) ; Search for text within a cell within a specific row\n* CSV_SearchColumn(CSV_Identifier, SearchText, ColNumber, Instance) ; Search for text within a cell within a specific column\n* CSV_MatchCell(CSV_Identifier, SearchText, Instance) ; Search for a cell containing exactly the data specified\n* CSV_MatchCellColumn(CSV_Identifier, SearchText, ColNumber, Instance=1) ; Search for a cell containing exactly the data specified in a specific column\n* CSV_MatchCellRow(CSV_Identifier, SearchText, RowNumber, Instance=1) ; Search for a cell containing exactly the data specified in a specific row\n* CSV_MatchRow(CSV_Identifier, \"SearchText1,SearchText2\", Instance) ; Search for a row containing exactly the data specified\n* CSV_MatchCol(CSV_Identifier, \"SearchText1, SearchText2\", Instance) ; Search for a column containing exactly the data specified\n* CSV_ReadCell(CSV_Identifier, Row, Column) ; Read data from the specified cell\n* CSV_ReadRow(CSV_Identifier, RowNumber) ; Read data from the specified row\n* CSV_ReadCol(CSV_Identifier, ColNumber) ; Read data from the specified column\n* CSV_LVLoad(CSV_Identifier, Gui, x, y, w, h, header, Sort?, RowIdentification?, AutoAdjustCol?) ; Load data into a listview in the specified gui window, listviewname variablewill equal \"CSV_Identifier\"\n* CSV_LVSave(FileName, CSV_Identifier, Delimiter, OverWrite?, Gui) ; Save the specified listview as a CSV file, CSV_Identifier is the ListView's associated variable name.\n\n### AutoHotkey forum discussion\n\nhttps://autohotkey.com/boards/viewtopic.php?f=6\u0026t=34853\n","funding_links":[],"categories":["Libraries"],"sub_categories":["\u003ca name=\"libraries-data-format\"\u003e\u003c/a\u003eData format"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhi5%2FCSV","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhi5%2FCSV","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhi5%2FCSV/lists"}