Golang : Reverse text lines or flip line order example
Problem:
You are given lines of text and you need to reverse the lines order before encrypting the text. Reversing or scrambling the lines of text order can be useful in situation when you want extra layer of protection against decryption program. For example, from
abc
def
to
def
abc
How to do that?
Solution:
package main
import (
"fmt"
"strings"
)
func main() {
// originalOrder := `abc
//def
//ghi
//jkl
//mno
//pqr
//stu
//vwx
//yz`
originalOrder := `Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Praesent porttitor nulla vitae interdum fermentum. Ut in vulputate neque.
Praesent luctus lacus a dolor tempus pellentesque. Cras sit amet urna eu augue suscipit eleifend.
Mauris mollis pharetra faucibus. Phasellus eu massa quam.
Nunc id metus placerat neque feugiat commodo.`
lines := strings.Split(originalOrder, "\n")
fmt.Println("Before :\n ", originalOrder)
reverseOrderSlice := []string{}
// https://www.socketloop.com/tutorials/golang-how-to-reverse-slice-or-array-elements-order
//reverse the elements in lines slice
for i := range lines {
n := strings.TrimSpace(lines[len(lines)-1-i])
reverseOrderSlice = append(reverseOrderSlice, n+"\n")
}
fmt.Println("=============================================")
// but we want the end result to be lines
toLines := fmt.Sprintf("%v", reverseOrderSlice)
// remove the prefix [ and suffix ] leftover
toLines = toLines[1 : len(toLines)-1]
fmt.Println("After :\n ", toLines)
}
Output:
Before :
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Praesent porttitor nulla vitae interdum fermentum. Ut in vulputate neque.
Praesent luctus lacus a dolor tempus pellentesque. Cras sit amet urna eu augue suscipit eleifend.
Mauris mollis pharetra faucibus. Phasellus eu massa quam.
Nunc id metus placerat neque feugiat commodo.
=============================================
After :
Nunc id metus placerat neque feugiat commodo.
Mauris mollis pharetra faucibus. Phasellus eu massa quam.
Praesent luctus lacus a dolor tempus pellentesque. Cras sit amet urna eu augue suscipit eleifend.
Praesent porttitor nulla vitae interdum fermentum. Ut in vulputate neque.
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
References:
https://www.socketloop.com/tutorials/golang-how-to-reverse-slice-or-array-elements-order
See also : Golang : How to reverse slice or array elements order
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.8k How to show different content from website server when AdBlock is detected?
+7.5k Golang : Example of how to detect which type of script a word belongs to
+16.6k Golang : Capture stdout of a child process and act according to the result
+12k Golang : 2 dimensional array example
+38.8k Golang : How to read CSV file
+26.5k Golang : Find files by extension
+10.6k Nginx : TLS 1.2 support
+15.2k Golang : How to convert(cast) IP address to string?
+5.3k Clean up Visual Studio For Mac installation failed disk full problem
+11.2k Golang : Handle API query by curl with Gorilla Queries example
+32.3k Golang : Regular Expression for alphanumeric and underscore
+11.4k Golang : Convert(cast) float to int