8
votes
The fastest way to compare a partial string?
Use StrUtils.AnsiStartsStr for case-sensitive, StrUtils.AnsiStartsText for case-insensitive
(add StrUtils to your uses clause)
…
2
votes
Class Helper and Strings in Delphi Win32.
Yes, string is a native type with some special compiler magic added.
I don't know what operator overloading you would want. + and = already work as concatenation and equality operators. …
