A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.hashicorp.com/terraform/language/v1.6.x/functions/parseint below:

parseint - Functions - Configuration Language | Terraform

parseint parses the given string as a representation of an integer in the specified base and returns the resulting number. The base must be between 2 and 62 inclusive.

All bases use the arabic numerals 0 through 9 first. Bases between 11 and 36 inclusive use case-insensitive latin letters to represent higher unit values. Bases 37 and higher use lowercase latin letters and then uppercase latin letters.

If the given string contains any non-digit characters or digit characters that are too large for the given base then parseint will produce an error.

> parseint("100", 10)
100
 
> parseint("FF", 16)
255
 
> parseint("-10", 16)
-16
 
> parseint("1011111011101111", 2)
48879
 
> parseint("aA", 62)
656
 
> parseint("12", 2)
 
Error: Invalid function argument
 
Invalid value for "number" parameter: cannot parse "12" as a base 2 integer.

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4