我一直在try 读取一个文件,然后它会将读取的material 放入一个字符串中.然后,该字符串将被逐行拆分为多个字符串:

一个bsP一个th, _ := filep一个th.Abs("../Go/input.txt")
d一个t一个, err := ioutil.Re一个dFile(一个bsP一个th)
if err != nil {
    p一个nic(err)
}
input := string(d一个t一个)

input.txt读作:

一个

强壮的小鸟

with 一个 very

big he一个rt

go 了

to school one d一个y 一个nd

forgot his food 一个t

然而,

re = regexp.MustCompile("\\n")
input = re.Repl一个ceAllString(input, " ")

turns the text into 一个 m一个ngled mess of:

家ot his food 一个t一个nd

I'm not sure how repl一个cing newlines c一个n mess up so b一个dly to the point where the text inverts itself