Introduction
Reversing a string is a common task in programming and has many use cases, such as manipulating text for specific algorithms, implementing certain encryption techniques, or simply reversing input for user interfaces.
In this article, we will explore how to reverse a given string using the Go programming language (also known as Golang). Go is a statically typed, compiled language known for its simplicity and performance, making it an excellent choice for this task.
Objective
The objective of this task is to write a Go program that takes a string input from the user and returns the string reversed. This exercise will help to understand string manipulation and the usage of built-in functions in Go.
Code
package main
import (
"fmt"
)
func reverseString(s string) string {
runes := []rune(s) // Convert the string to a slice of runes to handle multi-byte characters correctly
for i, j := 0, len(runes)-1; i < j; i, j = i+1, j-1 {
runes[i], runes[j] = runes[j], runes[i] // Swap the characters at positions i and j
}
return string(runes) // Convert the slice of runes back to a string
}
func main() {
var input string
fmt.Print("Enter a string to reverse: ")
fmt.Scanln(&input) // Read the input string from the user
reversed := reverseString(input)
fmt.Println("Reversed string:", reversed)
}
Explanation of the Program Structure
The program consists of two main parts: the reverseString function and the main function.
1. The reverseString Function
The reverseString function takes a string as input, converts it into a slice of runes (to handle multi-byte characters correctly), and then reverses the slice in-place by swapping characters at positions i and j (where i starts from the beginning of the slice and j starts from the end).
After reversing the slice, it is converted back to a string and returned.
2. The main Function
The main function prompts the user to input a string. It then calls the reverseString function to reverse the string and displays the reversed string as output.
How to Run the Program
- Install Go from the official website: Go Downloads
- Create a new Go file (e.g.,
reverse.go) and paste the code above into it. - Open your terminal or command prompt.
- Navigate to the directory where your Go file is located.
- Run the program by typing
go run reverse.goin your terminal. - The program will prompt you to enter a string. After entering the string, it will print the reversed version of the string.

