Last active
November 17, 2022 04:10
-
-
Save wibawasuyadnya/f295d5bc4ba50bc37b12c6264891f505 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//list of RegExp | |
/* Pattern for Matching Search Filter */ | |
var pattern1 = /^[\w\s\-]*$/; | |
var pattern2 = /^[\a-Z\w\’£\s]*$/; | |
var pattern3 = /^[\a-Z\w\'’£\s]*$/; /* Uncaught range change to */ /^[\a-zA\w\-\’£®™\s]*$/ | |
var pattern4 = /^[\a-Z\w\’£®™\s]*$/; | |
var pattern5 = /^[\w\-\.+,;:='’£%™®\s]*$/; //Used and best approach for custom alphanumerical | |
/* End Pattern for Matching Search Filter */ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment