if regex match JS code example
Example 1: js string to regex
const regex = new RegExp('https:\\/\\/\\w*\\.\\w*.*', 'g');
Example 2: js match any number string
const match = 'some/path/123'.match(/\/(\d+)/)
const id = match[1] // '123'
const regex = new RegExp('https:\\/\\/\\w*\\.\\w*.*', 'g');
const match = 'some/path/123'.match(/\/(\d+)/)
const id = match[1] // '123'