Ver Mensaje Individual
  #2  
Antiguo 18-11-2004
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
Podría funcionarte algo así:

Código Delphi [-]
var
  List: TStringList;

begin
  List := TStringList.Create;
  List.Delimiter := '@';
  List.DelimitedText := '298@juan perez@san carlos@22/11/2004@jazmin';

  {
    Aquí accedes a los elementos con List[0], List[1], List[2], etc.
  }

  List.Free;
end;

// Saludos
Responder Con Cita