Ejemplo 1: js extrae solo números de una cadena
"1.23-45/6$7.8,9".replace(/[^0-9]/g,'')
// Response: "123456789"
Ejemplo 2: js obtiene un número de una cadena
thenum = "foo3bar5".match(/d+/)[0] // "3"
Ejemplo 3: javascript extraer número de cadena
// Html: <span id="foo">280ms</span>
var text = $('#foo').text();
var number = parseInt(text, 10);
alert(number);
// parseInt('ms120'.replace(/[^0-9.]/g, ''), 10);
Ejemplo 4: 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.
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)