How To Restrict Special Characters Using jQuery Regex

Websolutionstuff | Dec-26-2022 | Categories : Laravel PHP jQuery

In this article, we will see how to restrict special characters using jquery regex. Here, we will learn how to create regex validation for a special character that is not allowed in the input textbox.

Using regular expression you can restrict the special character in the input fields. If you want to not be allowed special characters in input fields then you can use regex for validation.

So, let's see special characters not allowed using jquery regex and jquery validation for special characters not allowed.

Example:

In this example, we will check regex validation on keyup event.

$(function () {
   $("form :input[type='text']").on("keyup", function (e) {
        var inputTextId = $('#' + this.id);
        var inputText = inputTextId.val();

        var errorFor = this.id;
        if (!isValidChar(inputText)) {
            $('#' + this.id).val('').valid();       
            setTimeout(function () { replaceErrorMsg(errorFor); }, 100);
        }
    }); 
}); 

function isValidChar(str) {
    return !/[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/g.test(str);
}

function replaceErrorMsg(errorFor) {
   $("label[for='" + errorFor + "'].help-block").html("Input is Invalid.");
}

 

Example 2:

In this example, we will check validation using a special characters code.

<input type="text" id="name" >

$("#name").keypress(function(e) {
	$("#error_sp_msg").remove();
	var k = e.keyCode,
			$return = ((k > 64 && k < 91) || (k > 96 && k < 123) || k == 8 || k == 32  || (k >= 48 && k <= 57));
      if(!$return) {
      	$("<span/>",{
        	"id" : "error_sp_msg",
          "html" : "Special characters not allowed"
        }).insertAfter($(this));
      	return false;
      }
      
})

 

Example 3:

In this example, we will use a validation jquery CDN file. So, add the following code to your file. Check the documentation of the jquery validation plugin.

HTML:

<form id="myform">
    <input type="text" name="title" />
    <br/><br/>
    <input type="submit" />
</form>

jQuery:

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.validate.js"></script>
<script>
$(document).ready(function() {

  $('#myform').validate({ // initialize the plugin
    rules: {
      title: {
        required: true,
        alphanumeric: true
      }
    },
    submitHandler: function(form) { // for demo
      alert('valid form submitted'); // for demo
      return false; // for demo
    }
  });

});
</script>

Output:

how_to_restrict_special_characters_using_jquery_regex_output

 


You might also like:

Recommended Post
Featured Post
How To Disable Future Date In jQuery Datepicker
How To Disable Future Date In...

In this tutorial, we will see how to disable future dates in jquery datepicker. In the date picker, today's dat...

Read More

Jun-17-2022

Dependent Dropdown In Laravel 9 Vue JS
Dependent Dropdown In Laravel...

In this article, we will see a dependent dropdown in laravel 9 vue js. Here, we will learn how to create a dependent dro...

Read More

Dec-15-2022

Laravel 9 Phone Number Validation Using Regex
Laravel 9 Phone Number Validat...

In this article, we will see laravel 9 phone number validation using regex. In laravel 9 we will see different meth...

Read More

Oct-25-2022

How to Install Select2 in Laravel 10 Example
How to Install Select2 in Lara...

Hey there, Laravel enthusiasts! If you're looking to add a touch of elegance and user-friendliness to your web...

Read More

Feb-14-2024