A simple question: how do I work with wildcards and "FindPart"
("strutils" unit) function?
If I use
writeln(FindPart('de?','abcdefgh'));
i'll got "4", but if I use
writeln(FindPart('de*','abcdefgh'));
I'll got "0". Why? How can I use the asterisk wildcard?
Thanks a lot!
Claudio