Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/02/2016, 23:44
fuchis
 
Fecha de Ingreso: febrero-2016
Ubicación: yucatan
Mensajes: 3
Antigüedad: 8 años, 11 meses
Puntos: 0
Respuesta: separar String en java

Cita:
Iniciado por anderlatorre Ver Mensaje
suponiendo que el texto esta en un objeto tipo string "str

Código Java:
Ver original
  1. String aux="";
  2. for(i=0;i<str.length;i+=3)
  3.  {
  4.  aux+=str.substring(i,i+3)+",";
  5.  }
  6. str=aux;

algo así seria la idea,probablemente tenga fallos" index out of bounds"porque lo he hecho rapidamente y sin pensar jeje...
gracias funciono