[Solved] Delphi Split-Merge String without seperators?
There is no built-in functionality to do that, since you throw away information (the length of each string). So that information have to be stored somewhere. You could use a TStringList descendant : Interface TMyStrings = class(TStringList) protected function GetTextStr: string; override; end; Implementation { TMyStrings } function TMyStrings.GetTextStr: string; var Element: String; begin Result … Read more