douxiangui5011 2015-12-23 12:00
浏览 219
已采纳

Golang:读取包含多行的文本文件

I have a text file with multi-line rows, delimited by a blank line. What would be the best way to read that row for row in Go?

I think I may have to use a Scanner with my own Split function, but just wondering if there is a better/easier way that I am missing.

I have tried using my own Splitfunc based on bufio.ScanLines:

func MyScanLines(data []byte, atEOF bool) (advance int, token []byte,    err error) {
    if atEOF && len(data) == 0 {
            return 0, nil, nil
    }
    if i := bytes.IndexAny(data, "

"); i >= 0 {
            return i + 1, dropCR(data[0:i]), nil
    }
    if atEOF {
            return len(data), dropCR(data), nil
    }
    return 0, nil, nil
}

But I get an error on the IndexAny call: "syntax error: unexpected semicolon or newline, expecting )" - Fixed that

Update: Fixed the syntax error above as suggested, but I only get the first line returned. I am reading the file as follows:

scanner.Split(MyScanLines)
scanner.Scan()
fmt.Println(scanner.Text())

Any suggestions?

Example of test file I am trying to read:

Name = "John"
Surname = "Smith"
Val1 = 700
Val2 = 800

Name = "Pete"
Surname = "Jones"
Val1 = 555
Val2 = 666
Val3 = 444

 .
 .
 .
  • 写回答

4条回答 默认 最新

  • dqoag62688 2015-12-24 23:21
    关注

    Broken out. First understand scanning and make sure that is working:

    package main
    
    import (
        "bufio"
        "fmt"
        "strings"
    )
    
    func main() {
        scanner := bufio.NewScanner(strings.NewReader(data))
        for scanner.Scan() {
            l := scanner.Text()
            fmt.Println(l)
    
        }
    
    }
    
    var data = `
    Name = "John"
    Surname = "Smith"
    Val1 = 700
    Val2 = 800
    
    Name = "Pete"
    Surname = "Jones"
    Val1 = 555
    Val2 = 666
    Val3 = 444
    `
    

    Here is the code on the Go playground.

    Next, gather the data you need into a slice. There is probably a way to check end of file, EOF, but I wasn't able to find it. This is what I came up with and this works:

    package main
    
    import (
        "bufio"
        "fmt"
        "strings"
    )
    
    func main() {
        buffer := [][]string{}
        block := []string{}
        scanner := bufio.NewScanner(strings.NewReader(data))
        for scanner.Scan() {
            l := scanner.Text()
    
            if len(l) != 0 {
                block = append(block, l)
                continue
            }
    
            if len(l) == 0 && len(block) != 0 {
                buffer = append(buffer, block)
                block = []string{}
                continue
            }
    
            if len(l) == 0 {
                block = []string{}
                continue
            }
    
        }
    
        if len(block) != 0 {
            buffer = append(buffer, block)
            block = []string{}
        }
    
        fmt.Println("PRINTING BUFFER - END OF PROGRAM - ALL DATA PROCESSED:", buffer)
    
    }
    
    var data = `
    Name = "John"
    Surname = "Smith"
    Val1 = 700
    Val2 = 800
    
    Name = "Pete"
    Surname = "Jones"
    Val1 = 555
    Val2 = 666
    Val3 = 444
    `
    

    Here is the code on the playground.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 用C语言输入方程怎么
  • ¥15 网站显示不安全连接问题
  • ¥15 github训练的模型参数无法下载
  • ¥15 51单片机显示器问题
  • ¥20 关于#qt#的问题:Qt代码的移植问题
  • ¥50 求图像处理的matlab方案
  • ¥50 winform中使用edge的Kiosk模式
  • ¥15 关于#python#的问题:功能监听网页
  • ¥15 怎么让wx群机器人发送音乐
  • ¥15 fesafe材料库问题