Answers for "how to create regex in js"

64

javascript regex

// \d	Any digit character
// \w	An alphanumeric character (“word character”)
// \s	Any whitespace character (space, tab, newline, and similar)
// \D	A character that is not a digit
// \W	A nonalphanumeric character
// \S	A nonwhitespace character
// .	Any character except for newline
// /abc/
Posted by: Guest on February-19-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language