I want to paste in a textBox and after I paste it, it should replace all spaces with commas.
<!DOCTYPE html>
<html>
<body>
<input id="pc" type="text" contenteditable="true" onpaste="myFunction()" size="60" >
<script>
function myFunction() {
var e=document.getElementById("pc");
setTimeout(function(){alert(e.value);}, 45);
var x = document.getElementById("pc").value;
alert(x);
var s = x.replaceAll(" ",",");
alert(s);
document.getElementById("pc").value = s;
}
</script>
</body>
</html>
My first alert prints blank. Second alert ( alert(x)) also blank. Third alert ( alert(s)) print the text I'm trying to paste.
I expect the third alert to print the replaced text and this value overrides the pasted value in the text box.
This answer uses Jquery:
You can first bind to a
paste
event within the text input, and then grab the result of the paste event into a variable. Then, to replace the spaces with commas, you just need a very basic regex:data.replace(new RegExp(' ', 'g'), ',')
, which replaces every space with a comma.