Wenn die Position fest ist
Delphi-Quellcode:
if Copy(S, 5, 2) = '.2' then
if Pos('.2', S) = 5 then
ist die Position nicht fest, es kommt aber auch nur ein Punkt drin vor
if Pos('.2', S) > 0 then
bei den Regulären dürfte auch dieses gehn
http://www.delphipraxis.net/internal...062424#1062424
Delphi-Quellcode:
if MatchString('*.2*', S) then
// mindestens ein Zeichen vorm Punkt
if MatchString('?*.2*', S) then