1 Star 0 Fork 0

senki/dtomap

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sourcetext.go 663 Bytes
一键复制 编辑 原始数据 按行查看 历史
senki 提交于 2020-07-06 15:43 . dtomap
package dtomap
import (
"bufio"
"os"
)
type SourceText struct {
lines []string
curLineIndex int
}
func (s *SourceText) LoadLines(path string) error {
file, err := os.Open(path)
if err != nil {
return err
}
scanner := bufio.NewScanner(file)
for scanner.Scan() {
s.lines = append(s.lines, scanner.Text())
}
return nil
}
func (s *SourceText) FirstLine() string {
if len(s.lines) > 0 {
line := s.lines[0]
return line
}
return ""
}
func (s *SourceText) NextLine() bool {
s.curLineIndex++
if s.curLineIndex < len(s.lines) {
return true
}
return false
}
func (s *SourceText) Line() string {
return s.lines[s.curLineIndex]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/glzsk/dtomap.git
[email protected]:glzsk/dtomap.git
glzsk
dtomap
dtomap
master

搜索帮助