Ejemplo 1: regex coincide con cualquier número
For matching an integer number of one single char/digit, specify:
[0-9]
But for matching any number of more than one char/digit; add "+":
[0-9]+
Example for matching hour with minutes of HH:MM format in a file:
grep "[0-9]+:[0-9]+" file.txt
Ejemplo 2: expresión regular para números
Regex regex = new Regex(@"^d$");
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)