Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/09/2006, 11:29
Avatar de AlZuwaga
AlZuwaga
Colaborador
 
Fecha de Ingreso: febrero-2001
Ubicación: 34.517 S, 58.500 O
Mensajes: 14.550
Antigüedad: 24 años, 4 meses
Puntos: 535
Si lo querés meter en un array, podés hacer algo así:

Código:
<%
variable = "1234567890"

DIM L()
Redim L(Len(variable))

For i = 0 to UBound(L)
L(i) = Mid(variable, i+1, 1)
Next
%>
__________________
...___...