So I know that the FastCode project pretty much stopped with the introduction to Delphi of Unicode, but is anyone using any string libraries with XE? Or is it all just so superb that no add-ons are needed?

Comments

  1. François Piette Performance is always a concern; string manipulations are, in some cases, a factor.

    ReplyDelete
  2. Yes.. of course if you need a high performance write that in assembly.. i wrote once the Pos function which supported optional case insensitivity ņd worked 10*N times faster then standard one (not in asm that time..)

    ReplyDelete
  3. Bill Meyer Yes, in some cases. But frequently using another algorithm solve the performance problem. When speed matters, for example when writing a parser, I prefer to use the good old method of having pointers to parse the strings and almost never move string data around. I hate haing to resort to assembly code to get faster code because on the long term it causes a lot of problems.

    ReplyDelete

Post a Comment