Какая задача - такое и решение:
procedure someProcedure();
var
s1, s2 : TStringList;
begin
s1 := TStringList.Create;
s2 := TStringList.Create;
try
s1.LineBreak := ' ';
s1.Text := 'Hello world!';
s2.Text := s1.Strings[0];
ShowMessage(s2.Text);
finally
s1.Free;
s2.Free;
end;
end;