“JavaScript Find Number in string” Respostas de código

Como encontrar o número em String js

// To find a number in a string
const str = "sdfh0d5f6"
const result = str.match(/\d+/g)

console.log(result)
// ['0', '5', '6']
Radmehr Aghdam

JavaScript Find Number in string

the regular expression on looks for the first number character in the string

let numberInString = theString.match(/\d+/[0];
McBurd

JavaScript Encontre um dígito em STR

var regex = /\d+/g;
var string = "Any string you want!";
var matches = string.match(regex);  // creates array from matches

if (matches){
  // There is a digit in the string.
} else {
  // No Digits found in the string.
}
Vivacious Vendace

Respostas semelhantes a “JavaScript Find Number in string”

Perguntas semelhantes a “JavaScript Find Number in string”

Mais respostas relacionadas para “JavaScript Find Number in string” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código