{"id":23234866,"url":"https://github.com/exectails/comfyui-et_stringutils","last_synced_at":"2026-01-23T06:33:06.065Z","repository":{"id":264844397,"uuid":"892337255","full_name":"exectails/comfyui-et_stringutils","owner":"exectails","description":"ComfyUI String Utility Nodes","archived":false,"fork":false,"pushed_at":"2024-11-26T20:26:14.000Z","size":18,"stargazers_count":1,"open_issues_count":2,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-19T21:45:20.393Z","etag":null,"topics":["comfyui","nodes"],"latest_commit_sha":null,"homepage":"","language":"Python","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/exectails.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-11-21T23:29:14.000Z","updated_at":"2025-03-05T20:16:49.000Z","dependencies_parsed_at":"2024-11-26T12:42:04.403Z","dependency_job_id":null,"html_url":"https://github.com/exectails/comfyui-et_stringutils","commit_stats":null,"previous_names":["exectails/comfyui-et_stringutils"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/exectails/comfyui-et_stringutils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exectails%2Fcomfyui-et_stringutils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exectails%2Fcomfyui-et_stringutils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exectails%2Fcomfyui-et_stringutils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exectails%2Fcomfyui-et_stringutils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/exectails","download_url":"https://codeload.github.com/exectails/comfyui-et_stringutils/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exectails%2Fcomfyui-et_stringutils/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28682259,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T05:48:07.525Z","status":"ssl_error","status_checked_at":"2026-01-23T05:48:07.129Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["comfyui","nodes"],"created_at":"2024-12-19T03:02:36.208Z","updated_at":"2026-01-23T06:33:06.043Z","avatar_url":"https://github.com/exectails.png","language":"Python","funding_links":[],"categories":["Workflows (3395) sorted by GitHub Stars","All Workflows Sorted by GitHub Stars"],"sub_categories":[],"readme":"ComfyUI - String Utils\n=============================================================================\n\nCollection of custom nodes for ComfyUI dedicated to the analysis and\ntransformation of text strings, such as for formatting and conversions\nbetween types.\n\nInstall\n-----------------------------------------------------------------------------\n\n**Option 1**\n\nInstall via [ComfyUI-Manager][3].\n\n**Option 2**\n\nClone the repository into your ComfyUI custom_nodes directory.\n```text\ngit clone https://github.com/exectails/comfyui-et_stringutils\n```\n\nNodes\n-----------------------------------------------------------------------------\n\n### Text Formatter\n\nSeveral nodes with varying numbers of optional inputs that can be used\nin conjunction with a formatting string to create the output. The node\nuses standard [python string formatting][1].\n\nThe nodes are useful to compose prompts based on variable inputs and\ncan be combined with [dynamic prompts][2] for even more flexibility.\n\n**Example**\n\nInsert values into a string.\n\nFormat\n```text\n\"Hello, {arg0}! Did you know? {arg1} is the answer to everything.\"\n```\n\nInput\n```text\narg0: \"John\"\narg1: 42\n```\n\nOutput\n```text\n\"Hello, John! Did you know? 42 is the answer to everything.\"\n```\n\n### Replace Text\n\nReplaces a string in a text with something else, using either plain text\nreplacement or regular expressions (regex).\n\n**Example 1**\n\nReplace a word in a text.\n\nInput\n```text\ntext: \"Hello, John!\"\nreplace: \"John\"\nreplacement: \"Mr. Smith\"\n```\n\nOutput\n```text\n\"Hello, Mr. Smith!\"\n```\n\n**Example 2**\n\nReplace a pattern in a text using regex and use a captured part in the\nreplacement.\n\nInput\n```text\ntext: \"Hello, John! Did you know 42 is the answer to everything?\"\nreplace: \"([0-9]+) is\"\nreplacement: \"\\1 is in fact\"\n```\n\nOutput\n```text\n\"Hello, John! Did you know 42 is in fact the answer to everything?\"\n```\n\n### ATOI/ITOA\n\nTwo simple nodes to convert strings to integers and vice versa.\n\n\n[1]: https://docs.python.org/3/tutorial/inputoutput.html\n[2]: https://github.com/exectails/comfyui-et_dynamicprompts\n[3]: https://github.com/ltdrdata/ComfyUI-Manager\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexectails%2Fcomfyui-et_stringutils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexectails%2Fcomfyui-et_stringutils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexectails%2Fcomfyui-et_stringutils/lists"}