“JavaScript Buscar número en String” Código de respuesta

Cómo encontrar el número en 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 Buscar número en String

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

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

JavaScript Encuentra un dígito en 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

Respuestas similares a “JavaScript Buscar número en String”

Preguntas similares a “JavaScript Buscar número en String”

Más respuestas relacionadas con “JavaScript Buscar número en String” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código