System.SysUtils.TStringHelper.Parse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function Parse(const Value: Integer): string; overload; static; inline;
class function Parse(const Value: Int64): string; overload; static; inline;
class function Parse(const Value: Boolean): string; overload; static; inline;
class function Parse(const Value: Extended): string; overload; static;inline;

Properties

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

Description

Parse converts Integer, Boolean and Extended types to their string representations.

This method is overloaded:

  • Converts an integer value into a string.
  • Converts a boolean value into a string.
  • Converts a floating-point value into a string.

See Also