Reputation: 12584
I know that a lot of code from FastStrings has been included into Delphi XE. I need to process several thousands of files and do some text processing. Is there a 'faster' alternative to the System.Pos routine?
Upvotes: 4
Views: 4360
Reputation: 5545
Yes. PosEx
function is from FastCode and is much faster compared to System.Pos. It is located in StrUtils unit.
Upvotes: 6