📌  相关文章
📜  如何检查某些东西是否只是delphi代码示例中的数字

📅  最后修改于: 2022-03-11 14:54:56.482000             🧑  作者: Mango

代码示例1
if TryStrToInt(Edit1.Text, Value) then
  DoSomethingWithTheNumber(Value)
else
  HandleNotANumberError(Edit1.Text);