Contact: aviboots(AT)netvision.net.il
40,897 questions
53,327 answers
573 users
const s = "typescript412hjdsf72q1p0on8mq php 9953"; const arr = s.match(/^\d+|\d+\b|\d+(?=\w)/g).map(function (n) {return + n;}); console.log(arr[0]); /* run: 412 */
const s = "typescript412hjdsf72q1p0on8mq php 9953"; const n = s.match(/\d+/)[0]; console.log(n); /* run: "412" */
const s = "typescript412hjdsf72q1p0on8mq php 9953"; const arr = s.match(/^\d+|\d+\b|\d+(?=\w)/g); console.log(arr[0]); /* run: "412" */