Ver Mensaje Individual
  #12 (permalink)  
Antiguo 11/09/2008, 10:16
stakabrown
 
Fecha de Ingreso: diciembre-2003
Mensajes: 5
Antigüedad: 21 años, 4 meses
Puntos: 0
Respuesta: Separar Numero , en parte entera y parte decimal

Creo que tienes razón, los eventos deben escribirse en minúsculas; fue un error de mezclar html con vb.net.

Por cierto encontré la RegEx que aplicaría para ese ejemplo:
http://regexlib.com/REDetails.aspx?regexp_id=1049


Pattern Title
Expression:

^(?=.*[1-9].*$)\d{0,7}(?:\.\d{0,9})?$


Description
Allows up to seven digits to the left and up to nine digits to the right of an optional decimal place. Leading zeros on the left of the decimal are accepted. Only positive values are accepted.

Matches
1 | 0123456.123456789 | .123456789

Non-Matches
.0123456789 | 0.0 | -1