Built-in Functions → double

double() is a conversion function that returns a double value from given a string value.

Signature

double(string exp)
  • string exp : string to convert

Returns

double

Example

Convert "49.98" from string type to double.

double("49.98")