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

Chemistry - Bond Angles In NH3 And NCl3

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Change The Font Size Of Visual Studio Solution Explorer