String Structure Checker in Javascript
Introduction:
This tutorial is on how to create a structure checker for basic plain text in Javascript.
Why?
This tool would be used for ensuring data that is getting parsed through functions, databases and/or files is in the correct format and would not cause an error.
This example tool is for removing multiple spaces at once, for example;
->Hi there!
would be replaced with:
->Hi there!
HTML:
The HTML is basic HTML and just includes two textareas.