“JavaScript Znajdź numer w ciągu” Kod odpowiedzi

Jak znaleźć numer w ciągu 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 Znajdź numer w ciągu

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

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

JavaScript Znajdź cyfrę w 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

Odpowiedzi podobne do “JavaScript Znajdź numer w ciągu”

Pytania podobne do “JavaScript Znajdź numer w ciągu”

Więcej pokrewnych odpowiedzi na “JavaScript Znajdź numer w ciągu” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu