bunu ben çalıştıramadım çay problem değilde

bendemi sıkıntı acaba
Bu işinizi görecektir.
<script src="http://code.jquery.com/jquery-3.3.1.min.js"></script>
<input type="text" id="puty" />
<script>
$( "#puty" ).on('change', function() {
var str = $( "#puty" ).val();
var strnew = str.replace(/\+/g, ' ').replace(/\ /g, '').replace(/\-/g, '');
$( "#puty" ).val( strnew );
})
</script>