System.SysUtils.StrToInt

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function StrToInt(const S: string): Integer;

C++

extern DELPHI_PACKAGE int __fastcall StrToInt(const System::UnicodeString S)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

Converts a string that represents an integer (decimal or hex notation) into a number.

StrToInt converts the string S, which represents an integer-type number in either decimal or hexadecimal notation, into a number.

S must be an integer number, in either decimal or hexadecimal (see below) notation, with an optional sign ("-" or "+") at the beginning. Decimal or thousand separators are not supported. If S does not represent a valid number, StrToInt raises an EConvertError exception.

StrToInt supports strings in the following hexadecimal notations:

  • Delphi: 1234ドル
  • C++: 0x1234

See Also


Code Examples

Retrieved from "https://docwiki.embarcadero.com/Libraries/Tokyo/e/index.php?title=System.SysUtils.StrToInt&oldid=781603"