31/07/2008, 15:47
|
| | Fecha de Ingreso: abril-2007
Mensajes: 3
Antigüedad: 17 años, 8 meses Puntos: 0 | |
Respuesta: Como funciona el Trim() Asi funciona el trim
public String trim () {
int start = offset, last = offset + count - 1;
int end = last;
while ((start <= end) && (value [start] <= ' ')) start++;
while ((end >= start) && (value [end] <= ' ')) end--;
if (start == offset && end == last) return this;
return new String (start, end - start + 1, value);
} |