字符串怎样转换成Boolean? ( 积分: 50 )

  • 主题发起人 主题发起人 wooiguo
  • 开始时间 开始时间
W

wooiguo

Unregistered / Unconfirmed
GUEST, unregistred user!
字符串是Y或者N,怎样通过判断转换或得到Boolean型的True或False?
(不是字符串True或False)
 
自己写个函数好了:
function stringToBool(s:string): boolean;
begin
if (s='y') or (s='Y') then
result := true
else if (s='n') or (s='N') then
result := false;
end;
 
function b(s: string): boolean;
begin
result := s = 'Y';
end
 
看来没有现成的函数,不过能用就行.
谢谢lxw5214.
再谢3868474已经帮我多次了.
 

Similar threads

回复
0
查看
881
不得闲
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
923
SUNSTONE的Delphi笔记
S
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部