delphi里怎样判断输入字符是否为numeric型,,函数是什么?

.... . 展开
 我来答
来自南屏古村精致的懒羊羊
2006-11-09 · TA获得超过777个赞
知道小有建树答主
回答量:928
采纳率:0%
帮助的人:1222万
展开全部
没有这个函数.不过你可以自己写函数

Function isInteger(s: string): boolean;
Begin
result := CoventDataType(s,'Integer');
End;

Function isFloat(s: string): boolean;
Begin
result := CoventDataType(s,'Float');
End;

function isDate(s: string): boolean;
begin
result := CoventDataType(s,'Date');
End;

function isTime(s: string): boolean;
Begin
result := CoventDataType(s,'Time')
End;

function isDatetime(s: string): boolean;
Begin
result := CoventDataType(s,'A-DateTime'); //A 代表 DateTime 区别于DateTime
End;

Function CoventDataType(S: string; sType: string) : boolean;
Begin
result := false;
try
case Ord(sType[1]) of
65,97 : strtoDateTime(s);//A- dAtetime类型
68,100: StrToDate(S); //D- 'Date' 的ASC码
70,102: StrToFloat(S); //F- Float
73,105: StrToInt(S); //I- integer
84,116: StrToTime(S); //T- Time
else
exit;
end;
Result := true;
except
on E: EConvertError do result := false;
End;
End;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式