TryStrToInt功能 返回字元串S轉換成整數Value是否成功TryStrToInt
基本介紹
- 中文名:TryStrToInt
- 功能:返回字元串S轉換成整數
- 參考: procedure System.Val
- 首部 : function
簡介,例舉說明,
簡介
首部 function TryStrToInt(const S: string; out Value: Integer): Boolean; $[SysUtils.pas
說明 字元串非整數表達時返回False並且Value將輸出為0
參考 procedure System.Val
例舉說明
///////Begin TryStrToInt
procedure TForm1.Button1Click(Sender: TObject);
var
I: Integer;
begin
CheckBox1.Checked := TryStrToInt(Edit1.Text, I);
SpinEdit1.Value := I;
end;
///////End TryStrToInt