Search Results

0
votes

What is the fastest way to Parse a line in Delphi?

This begs another question - How big? Give us a clue like # of lines or # or Mb (Gb)? Then we will know if it fits in memory, needs to be disk based etc. At first pass I would use my WordLi …
3
votes

Delphi: How to have non-contiguous subrange enumeration type?

Could you use a set instead? TSomeCharSet= Set of Char; SomeChars: TSomeCharSet = [' ','A','B','C','D','E','F','R']; Could be granny and egg situation but I'm not …
-1
votes

Help in Pascal writing a word counter

Off the top of my head - not tested function WordCount(const S: string; const C: Char): Integer; const ValidChars: Set of Char [A..Z, a..z]; // Alter for appropriate language var …
0
votes

Hanging else problem?

I don't see the problem for pascal ? This one is incorrectly indented. if a then if b then x = 1; else y = 1; Removing the semi-colon from …