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

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条)

报告相同问题?

悬赏问题

  • ¥30 Matlab打开默认名称带有/的光谱数据
  • ¥50 easyExcel模板 动态单元格合并列
  • ¥15 res.rows如何取值使用
  • ¥15 在odoo17开发环境中,怎么实现库存管理系统,或独立模块设计与AGV小车对接?开发方面应如何设计和开发?请详细解释MES或WMS在与AGV小车对接时需完成的设计和开发
  • ¥15 CSP算法实现EEG特征提取,哪一步错了?
  • ¥15 游戏盾如何溯源服务器真实ip?需要30个字。后面的字是凑数的
  • ¥15 vue3前端取消收藏的不会引用collectId
  • ¥15 delphi7 HMAC_SHA256方式加密
  • ¥15 关于#qt#的问题:我想实现qcustomplot完成坐标轴
  • ¥15 下列c语言代码为何输出了多余的空格