hugo/docs/content/en/functions/cast/ToFloat.md
Bjørn Erik Pedersen 5fd1e74903
Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'
```
git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
```

Closes #11925
2024-01-27 10:48:57 +01:00

950 B

title description categories keywords action aliases
cast.ToFloat Converts a value to a decimal floating-point number (base 10).
aliases related returnType signatures
float
functions/cast/ToInt
functions/cast/ToString
float64
cast.ToFloat INPUT
/functions/float

With a decimal (base 10) input:

{{ float 11 }} → 11 (float64)
{{ float "11" }} → 11 (float64)

{{ float 11.1 }} → 11.1 (float64)
{{ float "11.1" }} → 11.1 (float64)

{{ float 11.9 }} → 11.9 (float64)
{{ float "11.9" }} → 11.9 (float64)

With a binary (base 2) input:

{{ float 0b11 }} → 3 (float64)

With an octal (base 8) input (use either notation):

{{ float 011 }} → 9 (float64)
{{ float "011" }} → 11 (float64)

{{ float 0o11 }} → 9 (float64)

With a hexadecimal (base 16) input:

{{ float 0x11 }} → 17 (float64)