DEV Community

Discussion on: How to Detect Symbols & spaces With RegEx!

Collapse
 
moopet profile image
Ben Sinclair

use .match() in Javascript to search for the symbols.

Nitpick: if you want to search for an occurrence of something by regex in Javascript, you can use the search method. match is for retrieving matching patterns (possibly more than one). You can use match if you like, but it's not exactly the same thing.