blob: b3b18b0d289336399469b43423fae750f22fe030 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Copyright 2019 Nick White.
// Use of this source code is governed by the GPLv3
// license that can be found in the LICENSE file.
// boxtotxt converts a Tesseract .box file to plain text
package main
import (
"bufio"
"flag"
"fmt"
"log"
"os"
"strings"
)
func main() {
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "Usage: boxtotxt in.box\n")
flag.PrintDefaults()
}
flag.Parse()
if flag.NArg() != 1 {
flag.Usage()
os.Exit(1)
}
f, err := os.Open(flag.Arg(0))
defer f.Close()
if err != nil {
log.Fatalf("Could not open file %s: %v\n", flag.Arg(0), err)
}
scanner := bufio.NewScanner(f)
for scanner.Scan() {
t := scanner.Text()
s := strings.Split(t, "")
if len(s) < 1 {
continue
}
if s[0] == "\t" {
continue
}
fmt.Printf("%s", s[0])
}
fmt.Printf("\n")
}
|