CATEGORY

GOLANG Solutions

Golang array contains specific element or not? [SOLVED]

In this tutorial we have covered different examples to cover golang array contains elements. Use for loop to check for string, int or float64 element in array …

By tuannguyen · 5 min read · GOLANG Solutions

Golang print type of an object [SOLVED]

In this tutorial we covered golang print type of an object using string formatting, go reflect package and type assertions

By tuannguyen · 4 min read · GOLANG Solutions

Golang generate random string Examples [SOLVED]

Multiple examples covering golang generate random string using rand function. Generate alphanumeric, special characters, uppercase, lowercase strings

By tuannguyen · 6 min read · GOLANG Solutions

GO Import struct from another file [SOLVED]

You can use import to import the package and then reference the struct using package.StructName wherein the name of Struct must start with Capital letters to …

By tuannguyen · 6 min read · GOLANG Solutions