mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
9b0050e9aa
git-subtree-dir: docs git-subtree-split: 5c085a37b297bf12f59efeaae591418ec025c10d
53 lines
1.1 KiB
Markdown
53 lines
1.1 KiB
Markdown
---
|
|
title: cast.ToInt
|
|
description: Converts a value to a decimal integer (base 10).
|
|
keywords: []
|
|
action:
|
|
aliases: [int]
|
|
related:
|
|
- functions/cast/ToFloat
|
|
- functions/cast/ToString
|
|
returnType: int
|
|
signatures: [cast/ToInt INPUT]
|
|
aliases: [/functions/int]
|
|
---
|
|
|
|
With a decimal (base 10) input:
|
|
|
|
```go-html-template
|
|
{{ int 11 }} → 11 (int)
|
|
{{ int "11" }} → 11 (int)
|
|
|
|
{{ int 11.1 }} → 11 (int)
|
|
{{ int 11.9 }} → 11 (int)
|
|
```
|
|
|
|
With a binary (base 2) input:
|
|
|
|
```go-html-template
|
|
{{ int 0b11 }} → 3 (int)
|
|
{{ int "0b11" }} → 3 (int)
|
|
```
|
|
|
|
With an octal (base 8) input (use either notation):
|
|
|
|
```go-html-template
|
|
{{ int 011 }} → 9 (int)
|
|
{{ int "011" }} → 9 (int)
|
|
|
|
{{ int 0o11 }} → 9 (int)
|
|
{{ int "0o11" }} → 9 (int)
|
|
```
|
|
|
|
With a hexadecimal (base 16) input:
|
|
|
|
```go-html-template
|
|
{{ int 0x11 }} → 17 (int)
|
|
{{ int "0x11" }} → 17 (int)
|
|
```
|
|
|
|
{{% note %}}
|
|
Values with a leading zero are octal (base 8). When casting a string representation of a decimal (base 10) number, remove leading zeros:
|
|
|
|
`{{ strings/TrimLeft "0" "0011" | int }} → 11`
|
|
{{% /note %}}
|