Delphi Programming Series: 11 - Determine the position of a character in a string

preview_player
Показать описание
Hi. In this video we learn how to determine the position of a character in a string in Delphi.

Рекомендации по теме
Комментарии
Автор

Actually really helped me with my PAT thanks

daniels
Автор

Hi, is there any way that you can convert a string to a char in order to make use of a set?

keshineemoodley
Автор

Better use AnsiPos(...) instead of Pos(...) with UnicodeStrings (on Delphi 2009 and later).
Pos only works with single-byte chars.

MQuaritch