-
Notifications
You must be signed in to change notification settings - Fork 4
/
04_string_parsing_uint.go
49 lines (45 loc) · 1.29 KB
/
04_string_parsing_uint.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Devátá část
// Užitečné balíčky pro každodenní použití jazyka Go
// https://www.root.cz/clanky/uzitecne-balicky-pro-kazdodenni-pouziti-jazyka-go/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů z deváté části:
// https://github.com/tisnik/go-root/blob/master/article_09/README.md
//
// Demonstrační příklad číslo 4:
// Základní funkce pro parsing řetězců: ParseUInt.
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_09/04_string_parsing_uint.html
package main
import (
"fmt"
"strconv"
)
func tryToParseUnsignedInteger(s string, base int) {
i, err := strconv.ParseUint(s, base, 32)
if err == nil {
fmt.Printf("%d\n", i)
} else {
fmt.Printf("%v\n", err)
}
}
func main() {
tryToParseUnsignedInteger("42", 10)
tryToParseUnsignedInteger("42", 0)
tryToParseUnsignedInteger("42", 16)
tryToParseUnsignedInteger("42", 2)
tryToParseUnsignedInteger("42x", 10)
println()
tryToParseUnsignedInteger("-42", 10)
tryToParseUnsignedInteger("-42", 0)
tryToParseUnsignedInteger("-42", 16)
tryToParseUnsignedInteger("-42", 2)
tryToParseUnsignedInteger("-42x", 10)
println()
}