Topics

GO

About this topic: Articles tagged __TAG__

Showing 78 articles

Topics

Articles

Showing 78 articles

How-tos How to Write Multiline Strings in Go Learn how to write multiline strings in Go using backquotes. This guide covers creating, formatting, and using multiline strings effectively, allowing you to maintain readability … How-tos How to Check if a File Exists or Not in Go This tutorial will demonstrate how to check if a file exists or not in Go. Learn various methods including os.Stat, os.Open, and ioutil.ReadFile with clear code examples and … How-tos How to Extract a Substring in Golang This tutorial will demonstrate how to extract substrings in Golang using various methods, including string slicing and the strings package. Discover effective techniques to … How-tos How to Get Error Message in String in Go This tutorial demonstrates how to get an error message in string format in Go. Learn effective error handling techniques, including using the Error method, creating custom error … How-tos How to Delete Key From Map in Go This tutorial demonstrates how to delete a key from a map in Go. Learn the simple steps involved in using the delete function, along with clear code examples and explanations. … How-tos How to Cast Interface Into Concrete Type in Go This tutorial demonstrates how to cast an interface into a concrete type in Go. Learn about type assertion and type switches with practical examples to enhance your Go programming … How-tos How to Reverse an Array in Go This tutorial demonstrates how to reverse an array in Go using various methods. Learn to implement simple loops, built-in functions, and recursion with clear examples. Perfect for … How-tos Lambda Expression in Golang This tutorial explores lambda expressions in Golang, detailing how to create and utilize them for cleaner, more efficient code. Learn about passing lambda expressions as arguments, … How-tos How to Deep Copy in Go This tutorial demonstrates how to deep copy in Golang, exploring various methods such as JSON serialization, reflection, and manual copying. Learn the differences between deep and … How-tos How to Print Struct Variables in Console in Go To print the structure in Go, we use fmt package which implements formatted I/O with functions. How-tos How to Find a Type of an Object in Go We can inspect the datatype of variables in Go using the reflect package. How-tos How to Install Package in GoLang This tutorial demonstrates how to install packages in GoLang. How-tos How to Convert String to Byte Array in Golang This tutorial demonstrates to convert Golang string to byte array. How-tos How to Create an Empty Slice in Go This tutorial will demonstrate how to create an empty slice in Go using the make() function. How-tos How to Convert Boolean Into a String in Go This tutorial demonstrates how to convert Boolean to a string in Go. How-tos How to Create Constructors in Golang This tutorial demonstrates the different ways in creating constructors in Golang. How-tos How to Merge Two Maps in Golang This tutorial demonstrates how to merge two maps in Golang. How-tos How to Sort Slice of Structs in Go This tutorial demonstrates how to sort the slice of structs in GoLang. How-tos How to Reverse A String in Golang This tutorial demonstrates the methods on how to reverse a string in GoLang. How-tos How to Install GoLang Using Brew This tutorial demonstrates how to install Golang using brew on Linux or macOS. How-tos How to Concatenate Two Slices in Go As slices are mutable in Go unlike the arrays, we can append new elements to a slice or append two or more slices using append() function. How-tos How to Queue Implementation in Golang This article shows how to create a Queue in the Go programming language, often known as Golang, by utilizing the slice and container/list packages. How-tos How to Create Tags in Go This tutorial demonstrates how to create tags using the struct function and JSON in Go. How-tos How to Send a JSON String in a POST Request in Go This tutorial demonstrates how to send a JSON string in a POST request in Go.

← All topics