Delphi中的in在BCB中对应什么?(20分)

  • 主题发起人 主题发起人 sleepy
  • 开始时间 开始时间
S

sleepy

Unregistered / Unconfirmed
GUEST, unregistred user!
如 Edit1的OnKeyPress事件时判断
const str='abcde...z0..9'
if not (key in str) then
key = char(0);
~~~~~~~~~~
这里怎样转成BCB?
 
if isalphdig(char(key)) then
~~~~~~~~~
具体函数名记不清了,你可以查一下!
或用strstr
strchr之类。
 
4.13说得不太准确,delphi也有IN的.
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部