Javascript: Remove Spaces

<script type="text/javascript">
function removeSpaces(){
var txt=document.getElementById("t1").value;


var someText = txt.replace(/(\r\n|\n|\r)/gm," ");
someText = someText.replace(/\s+/g," ");
document.getElementById("t2").value=someText;
}

</script>

No comments:

Post a Comment

Unleashing the Power of NumPy Arrays: A Guide for Data Wranglers

Ever feel like wrestling with data in Python using clunky loops? NumPy comes to the rescue! This blog post will unveil the magic of NumPy a...