show/hide this revision's text 7 Don't know why the arrow characters unaligned again, but fixed it.

I have a huge file that I must parse line by line. Speed is of the essence.

Example of a line:

Token-1   Here-is-the-Next-Token      Last-Token-on-Line
      ^                        ^
   Current                 Position
   Position              after GetToken

GetToken is called, returning "Here-is-the-Next-Token" and sets the CurrentPosition to the position of the last character of the token so that it is ready for the next call to GetToken. Tokens are separated by one or more spaces.

Assume the file is already in a StringList in memory. It fits in memory easily, say 200 MB.

I am worried only about the execution time for the parsing. What code will produce the absolute fastest execution in Delphi (Pascal)?

    Post Made Community Wiki by Community

show/hide this revision's text 6 Just to make it a bit clearer

I have a huge file that I must parse line by line. Speed is of the essence.

Example of a line:

 Token-1   Here-is-the-Next-Token      Last-Token-on-Line
      ^                        ^
   Current                 Position
   Position              after GetToken

GetToken is called, returning "Here-is-the-Next-Token" and sets the CurrentPosition to the position of the last character of the token so that it is ready for the next call to GetToken. Tokens are separated by one or more spaces.

Assume the file is already in a StringList in memory. It fits in memory easily, say 200 MB.

I am worried only about the execution time for the parsing. What code will produce the absolute fastest execution in Delphi (Pascal)?

show/hide this revision's text 5 added 100 characters in body
show/hide this revision's text 4 Period should be a question mark
show/hide this revision's text 3 Oops. I didn't mean the fastest way to "write" the code, I mean't the way to get the fastest execution out of the code.
show/hide this revision's text 2 Added keyword
show/hide this revision's text 1