Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 864 Bytes

double-from.md

File metadata and controls

33 lines (21 loc) · 864 Bytes
description title
Learn more about: Double.From
Double.From

Double.From

Syntax

Double.From(value as any, optional culture as nullable text) as nullable number

About

Returns a Double number value from the given value. If the given value is null, Double.From returns null. If the given value is number within the range of Double, value is returned, otherwise an error is returned. If value is of any other type, it will first be converted to a number using Number.FromText. An optional culture may also be provided (for example, "en-US").

Example 1

Get the Double number value of "4".

Usage

Double.From("4.5")

Output

4.5

Related content