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
+8.8k Golang : How to capture return values from goroutines?
+6.2k Golang : Break string into a slice of characters example
+6.8k Golang : constant 20013 overflows byte error message
+25.5k Golang : missing Mercurial command
+22.4k Golang : Strings to lowercase and uppercase example
+4.2k Golang : Valued expressions and functions example
+35.9k Golang : How to split or chunking a file to smaller pieces?
+7.9k Golang : HTTP Server Example
+12.2k Golang : "https://" not allowed in import path
+9.2k Golang : Changing a RGBA image number of channels with OpenCV
+10.3k Golang : Get local time and equivalent time in different time zone
+6.2k PHP : Proper way to get UTF-8 character or string length