Answers for "regex character set javascript?"

SQL
3

Define REGEXP?

REGEXP is a pattern match in which matches pattern anywhere in the search value.
Posted by: Guest on December-22-2020
0

javascript regex match character from a set of characters

// Regex - Any character from a set of characters
console.log(/[0123456789]/.test("in 1992")); // true
console.log(/[0-9]/.test("in 1992")); // true
console.log(/[abc]/.test("def")); // false
console.log(/[abc]/.test("cdef")); // true
Posted by: Guest on June-28-2020

Code answers related to "regex character set javascript?"

Code answers related to "SQL"

Browse Popular Code Answers by Language