Ver Mensaje Individual
  #8 (permalink)  
Antiguo 26/04/2003, 20:46
Avatar de e-miliox
e-miliox
 
Fecha de Ingreso: noviembre-2002
Ubicación: San Antonio - Chile
Mensajes: 223
Antigüedad: 21 años, 5 meses
Puntos: 7
Hey! muchas gracias, pero aunqu no me resulto con el patron que me diste, arregle unas cositas por aqui y por alla y me resulto al fin :)

function sanitizar_nick($nick){

// limpiamos 1
$nick = trim($nick);
$nick = stripslashes($nick);
$nick = strip_tags($nick);

// si el nick no coincide con el patron entonces devuelve vacio
if (!eregi("^([-a-z0-9_]|\^|\[|\]|\s)+$",$nick)){
return "";
} else {
return $nick;
}

}

gracias por todo, y aqui les dejo un tutorial muy bueno, de expresiones regulares de BULMA (sitio muy bueno, publicidad aparte xD)

http://bulmalug.net/body.phtml?nIdNoticia=770&nIdPage=2
__________________
=PoWeReD By MySeLf!=