Q:

Golang program to demonstrate the os.Expand() function

belongs to collection: Golang os Package Programs

0

In this program, we will use os.Expand() function to expand or format a specified string with specified function and print the result on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate os.Expand() function is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to demonstrate the
// os.Expand() function

package main

import "fmt"
import "os"

func GetVal(val string) string {
	switch val {
	case "Name":
		return "Morrish"
	case "City":
		return "New York"
	default:
		return "<Empty>"
	}
}

func main() {
	str := "My name is $Name and live in $City."

	//Format the specified string using os.Expand
	strResult := os.Expand(str, GetVal)

	fmt.Println(strResult)
}

Output:

My name is Morrish and live in New York.

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the "fmt" package to use the Printf() function and we also imported the "os" package to use the Expand() function.

func GetVal(val string) string {
	switch val {
	case "Name":
		return "Morrish"
	case "City":
		return "New York"
	default:
		return "<Empty>"
	}
}

In the above code, we created a function GetVal() that returns the value based on a specified parameter.

In the main() function, we formatted a string using os.Expand() function and print the result on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang program to demonstrate the os.ExpandEnv() f... >>
<< Golang program to unset the value of environment v...