Get First Match Regex Javascript Code Example


Example 1: javascript regex for firstname

var nameRegex = /^[a-zA-Z\-]+$/;

Example 2: js match any number string

const match = 'some/path/123'.match(/\/(\d+)/) const id = match[1] // '123'

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?