JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="namaLengkap">
JavaScript
$("#namaLengkap").on("keypress keyup blur",function (event){
$(this).val($(this).val().replace(/^(?=.*?[1-9])[0-9()-]+$/, ""));
});
<input type="text" id="namaLengkap">
$("#namaLengkap").on("keypress keyup blur",function (event){
$(this).val($(this).val().replace(/^(?=.*?[1-9])[0-9()-]+$/, ""));
});