Answers for "regex to get number from string javascript"

3

just number regex js

// https://regex101.com/r/qyq3PG/1
// or 
/^[0-9]*$/
Posted by: Guest on July-11-2020
2

js match any number string

const match = 'some/path/123'.match(/\/(\d+)/)
const id = match[1] // '123'
Posted by: Guest on June-26-2020

Code answers related to "regex to get number from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language