String Structure Checker in Javascript
Submitted by Yorkiebar on Tuesday, April 15, 2014 - 20:19.
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. One textarea has the id of 'fromBox' which is where the function will get the plain text from to parse through the checking function while the second box has an id of 'toBox' and is where the text will be placed once/while the function is checking the text from the 'fromBox'. Finally we just have a basic button with the text of 'Check' which runs the javascript function 'checker' once it is clicked, which is created by the line...
...
Next we create a variable named 'text' which gets all the entered plain text from the 'fromBox' HTML textarea through its 'value' attribute. We also create another variable named 'wasPreviouslySpace' which has a default value of 0/false...
Finally we want to iterate through each character of our 'text' variable - the plain text value of the 'fromBox' HTML textarea, and ensure that we don't parse any double spaces. For each characer we parse, we add it to the 'toBox' - the second HTML textarea, if necessary. The 'wasPreviouslySpace' variable holds whether the previously checked character within the iterating for loop was a space or not, if it was, we do not want to add another one, so we add the needed logic here...
Finished!
- onclick='checker();'
Javascript:
Now for the actual javascript. First we create the basic code block for the function 'checker'...
- <head>
- <script>
- function checker() {
- }
- </script>
- </head>
- <head>
- <script>
- function checker() {
- var text = document.getElementById('fromBox').value;
- var wasPreviouslySpace = 0;
- }
- </script>
- </head>
- <head>
- <script>
- function checker() {
- var text = document.getElementById('fromBox').value;
- var wasPreviouslySpace = 0;
- for (var i=0;i<text.length;i++) {
- if (wasPreviouslySpace && text[i] != ' ') {
- wasPreviouslySpace = 0;
- document.getElementById('toBox').value += text[i];
- }else if(!wasPreviouslySpace && text[i] == ' ') {
- wasPreviouslySpace = 1;
- document.getElementById('toBox').value += ' ';
- }else if(!wasPreviouslySpace && text[i] != ' ') {
- wasPreviouslySpace = 0;
- document.getElementById('toBox').value += text[i];
- }
- }
- }
- </script>
- </head>
Add new comment
- 17 views