SOLVE-SMART Posted May 10 Posted May 10 (edited) data-to-table.au3 UDF Description This library (UDF) allows you to transform input data, like strings or arrays, to a nice readable table output with different border styles and aligned table cell content. Output your data to console, file or GUI. ๐ Please check out the upcoming features section. Acknowledgements The UDF is highly inspired by the great UDF "StringToTable.au3" by @ioa747ย . Thank you! Forum thread link: https://www.autoitscript.com/forum/topic/212876-_stringtotable/ All credits for the original logic go to @ioa747 who made the UDF with โค๏ธ for a readable and elegant output. Input ==> Output From string ... ; The $sData string is separated (columns) by tabs. Local Const $sData = _ 'Language Popularity (%) Job Demand Typical Use' & @CRLF & _ 'JavaScript 62.3 Very High Web Development, Frontend/Backend' & @CRLF & _ 'C# 27.1 High Game Development, Windows Apps, Web Dev' & @CRLF & _ 'Go 13.8 Growing Cloud Services, System Programming' & @CRLF & _ 'PowerShell 13.5 Low to Moderate Task Automation, DevOps, System Admin' & @CRLF & _ 'AutoIt 0.5 Low Windows GUI Automation, Scripting' ... or array ... ; Default separator is @TAB. Local Const $aData[][5] = _ [ _ ['Language', 'Popularity (%)', 'Job Demand', 'Typical Use' ], _ ['JavaScript', '62.3', 'Very High', 'Web Development, Frontend/Backend' ], _ ['C#', '27.1', 'High', 'Game Development, Windows Apps, Web Dev' ], _ ['Go', '13.8', 'Growing', 'Cloud Services, System Programming' ], _ ['PowerShell', '13.5', 'Low to Moderate', 'Task Automation, DevOps, System Admin' ], _ ['AutoIt', '0.5', 'Low', 'Windows GUI Automation, Scripting' ] _ ] ... to ... โโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Language โ Popularity (%) โ Job Demand โ Typical Use โ โโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ JavaScript โ 62.3 โ Very High โ Web Development, Frontend/Backend โ โ C# โ 27.1 โ High โ Game Development, Windows Apps, Web Dev โ โ Go โ 13.8 โ Growing โ Cloud Services, System Programming โ โ PowerShell โ 13.5 โ Low to Moderate โ Task Automation, DevOps, System Admin โ โ AutoIt โ 0.5 โ Low โ Windows GUI Automation, Scripting โ โโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ... or other border styles (see below). Links of interest ๐ README โจย the UDF (library) ๐โโ๏ธ usage example ๐ CHANGELOG ๐ Latest release Border styles Spoiler expandcollapse popup==> Border style: "1 = no-border" Language Popularity (%) Job Demand Typical Use JavaScript 62.3 Very High Web Development, Frontend/Backend C# 27.1 High Game Development, Windows Apps, Web Dev Go 13.8 Growing Cloud Services, System Programming PowerShell 13.5 Low to Moderate Task Automation, DevOps, System Admin AutoIt 0.5 Low Windows GUI Automation, Scripting ==> Border style: "2 = inner-border-header" Language โ Popularity (%) โ Job Demand โ Typical Use โโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ JavaScript โ 62.3 โ Very High โ Web Development, Frontend/Backend C# โ 27.1 โ High โ Game Development, Windows Apps, Web Dev Go โ 13.8 โ Growing โ Cloud Services, System Programming PowerShell โ 13.5 โ Low to Moderate โ Task Automation, DevOps, System Admin AutoIt โ 0.5 โ Low โ Windows GUI Automation, Scripting ==> Border style: "3 = border-no-header" โโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Language โ Popularity (%) โ Job Demand โ Typical Use โ โ JavaScript โ 62.3 โ Very High โ Web Development, Frontend/Backend โ โ C# โ 27.1 โ High โ Game Development, Windows Apps, Web Dev โ โ Go โ 13.8 โ Growing โ Cloud Services, System Programming โ โ PowerShell โ 13.5 โ Low to Moderate โ Task Automation, DevOps, System Admin โ โ AutoIt โ 0.5 โ Low โ Windows GUI Automation, Scripting โ โโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ==> Border style: "4 = border-and-header" โโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Language โ Popularity (%) โ Job Demand โ Typical Use โ โโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ JavaScript โ 62.3 โ Very High โ Web Development, Frontend/Backend โ โ C# โ 27.1 โ High โ Game Development, Windows Apps, Web Dev โ โ Go โ 13.8 โ Growing โ Cloud Services, System Programming โ โ PowerShell โ 13.5 โ Low to Moderate โ Task Automation, DevOps, System Admin โ โ AutoIt โ 0.5 โ Low โ Windows GUI Automation, Scripting โ โโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ==> Border style: "5 = border-edges-with-accent-and-header" โโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Language โ Popularity (%) โ Job Demand โ Typical Use โ โโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ JavaScript โ 62.3 โ Very High โ Web Development, Frontend/Backend โ โ C# โ 27.1 โ High โ Game Development, Windows Apps, Web Dev โ โ Go โ 13.8 โ Growing โ Cloud Services, System Programming โ โ PowerShell โ 13.5 โ Low to Moderate โ Task Automation, DevOps, System Admin โ โ AutoIt โ 0.5 โ Low โ Windows GUI Automation, Scripting โ โโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ==> Border style: "6 = double-outter-border-no-header" โโโโโโโโโโโโโโคโโโโโโโโโโโโโโโโโคโโโโโโโโโโโโโโโโโโคโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Language โ Popularity (%) โ Job Demand โ Typical Use โ โ JavaScript โ 62.3 โ Very High โ Web Development, Frontend/Backend โ โ C# โ 27.1 โ High โ Game Development, Windows Apps, Web Dev โ โ Go โ 13.8 โ Growing โ Cloud Services, System Programming โ โ PowerShell โ 13.5 โ Low to Moderate โ Task Automation, DevOps, System Admin โ โ AutoIt โ 0.5 โ Low โ Windows GUI Automation, Scripting โ โโโโโโโโโโโโโโงโโโโโโโโโโโโโโโโโงโโโโโโโโโโโโโโโโโโงโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ==> Border style: "7 = all-double-border-and-header" โโโโโโโโโโโโโโฆโโโโโโโโโโโโโโโโโฆโโโโโโโโโโโโโโโโโโฆโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Language โ Popularity (%) โ Job Demand โ Typical Use โ โ โโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ โ JavaScript โ 62.3 โ Very High โ Web Development, Frontend/Backend โ โ C# โ 27.1 โ High โ Game Development, Windows Apps, Web Dev โ โ Go โ 13.8 โ Growing โ Cloud Services, System Programming โ โ PowerShell โ 13.5 โ Low to Moderate โ Task Automation, DevOps, System Admin โ โ AutoIt โ 0.5 โ Low โ Windows GUI Automation, Scripting โ โโโโโโโโโโโโโโฉโโโโโโโโโโโโโโโโโฉโโโโโโโโโโโโโโโโโโฉโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ==> Border style: "8 = double-outter-border-and-header-with-single-inner-border" โโโโโโโโโโโโโโคโโโโโโโโโโโโโโโโโคโโโโโโโโโโโโโโโโโโคโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Language โ Popularity (%) โ Job Demand โ Typical Use โ โโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโข โ JavaScript โ 62.3 โ Very High โ Web Development, Frontend/Backend โ โ C# โ 27.1 โ High โ Game Development, Windows Apps, Web Dev โ โ Go โ 13.8 โ Growing โ Cloud Services, System Programming โ โ PowerShell โ 13.5 โ Low to Moderate โ Task Automation, DevOps, System Admin โ โ AutoIt โ 0.5 โ Low โ Windows GUI Automation, Scripting โ โโโโโโโโโโโโโโงโโโโโโโโโโโโโโโโโงโโโโโโโโโโโโโโโโโโงโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ==> Border style: "9 = rounded-corner-outside-border-only-no-header" โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ โ Language Popularity (%) Job Demand Typical Use โ โ JavaScript 62.3 Very High Web Development, Frontend/Backend โ โ C# 27.1 High Game Development, Windows Apps, Web Dev โ โ Go 13.8 Growing Cloud Services, System Programming โ โ PowerShell 13.5 Low to Moderate Task Automation, DevOps, System Admin โ โ AutoIt 0.5 Low Windows GUI Automation, Scripting โ โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ ==> Border style: "10 = double-outside-border-only-no-header" โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Language Popularity (%) Job Demand Typical Use โ โ JavaScript 62.3 Very High Web Development, Frontend/Backend โ โ C# 27.1 High Game Development, Windows Apps, Web Dev โ โ Go 13.8 Growing Cloud Services, System Programming โ โ PowerShell 13.5 Low to Moderate Task Automation, DevOps, System Admin โ โ AutoIt 0.5 Low Windows GUI Automation, Scripting โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ย ย Contribution, BUGs, issues, suggestions, wishes viaย GitHub issues / GitHub pull requests and/or here in the forum (also fine) Support give the project a โญ on GitHub follow me there come up with questions, suggestions, wishes ๐ Licenses Distributed under the MIT License. So don't worry and do whatever you want with it ๐ . -------------- Best regards Sven Edited Tuesday at 06:18 AM by SOLVE-SMART ioa747, mLipok and WildByDesign 3 ==> AutoIt related: ๐ GitHub, ๐ Discord Server, ๐ Cheat Sheet Spoiler ๐ย Au3Forums ๐ฒ AutoIt (en) Cheat Sheet ๐ AutoIt limits/defaults ๐ Code Katas: [...] (comming soon) ๐ญ Collection of GitHub users with AutoIt projects ๐ย False-Positives ๐ฎย Me on GitHub ๐ฌย Opinion about new forum sub category ๐ย UDF wiki list โย VSCode-AutoItSnippets ๐ย WebDriver FAQs ๐จโ๐ซย WebDriver Tutorial (coming soon)
SOLVE-SMART Posted Monday at 03:55 PM Author Posted Monday at 03:55 PM (edited) ๐ก Please notice, the public API - the single function call (_DataToTable(...)) - can and will change. Because it's not a major v1.0.0 version yet. I will inform about when it's a major version ๐ค . Best regards Sven Edited Monday at 04:27 PM by SOLVE-SMART ==> AutoIt related: ๐ GitHub, ๐ Discord Server, ๐ Cheat Sheet Spoiler ๐ย Au3Forums ๐ฒ AutoIt (en) Cheat Sheet ๐ AutoIt limits/defaults ๐ Code Katas: [...] (comming soon) ๐ญ Collection of GitHub users with AutoIt projects ๐ย False-Positives ๐ฎย Me on GitHub ๐ฌย Opinion about new forum sub category ๐ย UDF wiki list โย VSCode-AutoItSnippets ๐ย WebDriver FAQs ๐จโ๐ซย WebDriver Tutorial (coming soon)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now