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
+15.2k Golang : Get timezone offset from date or timestamp
+23.5k Golang : Read a file into an array or slice example
+5k Golang : Display packages names during compilation
+12.4k Elastic Search : Return all records (higher than default 10)
+10.3k Golang : cannot assign type int to value (type uint8) in range error
+13.6k Golang : Query string with space symbol %20 in between
+25k Golang : Create PDF file from HTML file
+9.2k Golang : Generate Codabar
+9.3k Golang : Generate EAN barcode
+9.4k Golang : Play .WAV file from command line
+5.9k Golang : Extract unicode string from another unicode string example
+15.6k Golang : Get checkbox or extract multipart form data value example