gpt4 book ai didi

delphi - 检查编辑框是否使用这种格式

转载 作者:行者123 更新时间:2023-12-03 18:19:01 25 4
gpt4 key购买 nike

我想检查并查看 TEdit.text 是否采用这种格式 123/45/678 输入文本时因此###/##/###

有什么简单的方法吗?谢谢

最佳答案

Function CheckStringWithMask(const Str,Mask:String):Boolean;
var
i:Integer;
begin
Result := true;
if length(str)=length(Mask) then
begin
i := 0;
While Result and (I < Length(Str)) do
begin
inc(i);
Result := Result and (Str[i] <> '#')
and ((Mask[i] ='#') and (CharInSet(Str[i],['0'..'9']))
or (Str[i]=Mask[i]));
end;
end
else Result := false;
end;

关于delphi - 检查编辑框是否使用这种格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14827791/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com