i Want to Remove unnecessary space and write content in separated line in textarea.
Ex.
abc
abcde
abd
Convert it to:
abc
abcde
abd
i Want to Remove unnecessary space and write content in separated line in textarea.
Ex.
abc
abcde
abd
Convert it to:
abc
abcde
abd
You need to do two things:
CODE:
var content = myTextArea.value;
//Split into lines
var lines = content.split( /\r?\n/ );
//Your new content
var newContent = "";
//Loop through all lines
for ( var i = 0; i < lines.length; i++ )
{
//Trim it first
var line = lines[ i ].trim();
//Empty line, remove it
if ( line === "" ) continue;
//Add to new content
newContent += line + "\n";
}
//Save to text area
myTextArea.value = newContent;