Files
learngo/13-loops/exercises/09-word-finder-exercises/02-path-searcher/solution/main.go

41 lines
804 B
Go
Raw Normal View History

2018-10-13 23:30:21 +03:00
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
import (
"fmt"
"os"
"path/filepath"
2018-10-13 23:30:21 +03:00
"strings"
)
func main() {
// Get and split the PATH environment variable
// SplitList function automatically finds the
// separator for the path env variable
words := filepath.SplitList(os.Getenv("PATH"))
// Alternative way, but above one is better:
// words := strings.Split(
// os.Getenv("PATH"),
// string(os.PathListSeparator))
2018-10-13 23:30:21 +03:00
query := os.Args[1:]
2018-10-13 23:30:21 +03:00
for _, q := range query {
for i, w := range words {
q, w = strings.ToLower(q), strings.ToLower(w)
2019-02-08 11:28:37 +03:00
if strings.Contains(w, q) {
2018-10-13 23:30:21 +03:00
fmt.Printf("#%-2d: %q\n", i+1, w)
}
}
}
}