我有一個以此結構開頭的檔案:
locals { my_list = [ "a", "b", "c", "d" //add more text before this ] }
我想在“//在此之前添加更多文本”之前添加文本“e”,在“d”之後添加“,”,所以它會像這樣:
locals { MY_LIST = [ "a", "b", "c", "d", "e" //add more text before this ] }
如何動態實現此功能,以便將來可以向文件添加更多字串?
謝謝
要在以“//”開頭的行之前添加文字“e”,您可以執行以下操作。
func main() { f, err := os.OpenFile("locals.txt", os.O_RDWR, 0644) if err != nil { log.Fatal(err) } scanner := bufio.NewScanner(f) lines := []string{} for scanner.Scan() { ln := scanner.Text() if strings.Contains(ln, "//") { index := len(lines) - 1 updated := fmt.Sprintf("%s,", lines[index]) lines[index] = updated lines = append(lines, " \"e\"", ln) continue } lines = append(lines, ln) } content := strings.Join(lines, "\n") _, err = f.WriteAt([]byte(content), 0) if err != nil { log.Fatal(err) } }
以上是如何在go中的特定字串之前附加到檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!