TO_DOUBLE function

TO_DOUBLE function

Function Name Description Usage Input parameter Return value
TO_DOUBLE Converts a string or an integer to a double. TO_DOUBLE() N/A A double.

Supported data type

The TO_DOUBLE function supports the following data types:

  • Integer
  • JSON
  • String

Example 1: Convert a string to a double

Sample data: $var1$ = "2.5"

Usage: $var1$.TO_DOUBLE()

Convert var1 to double.

Output: 2.5

Example 2: Convert an integer to a double

Sample data: $var1$ = 22

Usage: $var1$.TO_DOUBLE()

Convert var1 to double.

Output: 22.0

Recommendation

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年11月24日 UTC.