RBA
RBA

Reputation: 12584

Delphi XE - faster alternative to System.Pos function

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

Answers (1)

Linas
Linas

Reputation: 5545

Yes. PosEx function is from FastCode and is much faster compared to System.Pos. It is located in StrUtils unit.

Upvotes: 6

Related Questions