douqiang1851 2014-09-02 00:09
浏览 17
已采纳

执行:读取文件中特定范围的行

I mainly need to read a specific range of lines in a file, and if a string is matched to an index string (let's say "Hello World!" for example) return true, but I'm not sure how to do so. I know how read individual lines and whole files, but not ranges of lines. Are there any libraries out there that can assist, or there a simple script to do it w/? Any help is greatly appreciated!

  • 写回答

2条回答 默认 最新

  • doujia1939 2014-09-02 00:32
    关注

    Something like this?

    package main
    
    import (
        "bufio"
        "bytes"
        "fmt"
        "os"
    )
    
    func Find(fname string, from, to int, needle []byte) (bool, error) {
        f, err := os.Open(fname)
        if err != nil {
            return false, err
        }
        defer f.Close()
        n := 0
        scanner := bufio.NewScanner(f)
        for scanner.Scan() {
            n++
            if n < from {
                continue
            }
            if n > to {
                break
            }
            if bytes.Index(scanner.Bytes(), needle) >= 0 {
                return true, nil
            }
        }
        return false, scanner.Err()
    }
    
    func main() {
        found, err := Find("test.file", 18, 27, []byte("Hello World"))
        fmt.Println(found, err)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 nginx中的CORS策略应该如何配置
  • ¥30 信号与系统实验:采样定理分析
  • ¥100 我想找人帮我写Python 的股票分析代码,有意请加mathtao
  • ¥20 Vite 打包的 Vue3 组件库,图标无法显示
  • ¥15 php 同步电商平台多个店铺增量订单和订单状态
  • ¥15 关于logstash转发日志时发生的部分内容丢失问题
  • ¥17 pro*C预编译“闪回查询”报错SCN不能识别
  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题