Hola
josodi
A ver si te sirve esto:
Código PHP:
<html>
<head>
<script type="text/javascript">
function validar(texto) {
patron = /[-_.]/;
return !(patron.test(texto) || texto.length<3 || texto.length>20)
}
</script>
</head>
<body>
<form action="algo.php" onsubmit="return validar(txt.value)">
<textarea name="txt"></textarea>
<input type="submit" />
</form>
</body>
</html>
Saludos,