Golang : Spell checking with ispell example
Chinese New Year for 2017 celebration just over and now it is time to get back to work. Here is a simple example on how to wrap ispell
program in Golang. ispell
is a command line utility that can be used to check if a word is spelled correctly and if not, it will give a list of suggestions.
Pretty straightforward explanation can be found in the code below. This version should work correctly for International Ispell Version 3.4.00 8 Feb 2015
.
Here you go!
package main
import (
"fmt"
"os"
"os/exec"
"strings"
)
func handleError(err error) {
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
func ispellWrapper(inputWord string) string {
cmd := exec.Command("ispell")
stdin, err := cmd.StdinPipe()
handleError(err)
stdin.Write([]byte(inputWord + "\n"))
stdin.Close()
data, err := cmd.Output()
if err != nil {
panic(err)
}
// skip the credit line and get the remainder text
interestData := data[52:]
// check for "word: ok"
test := string(interestData[:8])
if (strings.Contains(test, "word: ok")) || (strings.Contains(test, "word: how")) {
//fmt.Println("Word ok")
return "Word ok"
} else {
// remove the "how about:" and the new line prompt "word: "
// and return the suggestions from ispell
test1 := interestData[17 : len(interestData)-7]
trimmed := strings.TrimSpace(string(test1))
return trimmed
}
}
func main() {
// spell check some words, if nothing is wrong with the given word
// you will get "Word ok" else you will get suggestions from ispell
fmt.Println(ispellWrapper("hello"))
fmt.Println(ispellWrapper("stinge"))
fmt.Println(ispellWrapper("wattee"))
}
Output:
Word ok
singe, sting, stinger, stings, stingy, tinge
wattle
Happy coding!
References:
https://www.socketloop.com/tutorials/trim-white-spaces-string-golang
https://www.socketloop.com/tutorials/golang-how-to-pipe-input-data-to-executing-child-process
See also : Golang : Convert word to its plural form example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.9k Golang : Calculate US Dollar Index (DXY)
+7.9k Prevent Write failed: Broken pipe problem during ssh session with screen command
+25.9k Golang : Convert(cast) string to uint8 type and back to string
+7.9k Golang : Metaprogramming example of wrapping a function
+7.5k Golang : Ways to recover memory during run time.
+6.7k Golang : constant 20013 overflows byte error message
+9.4k Golang : Quadratic example
+12.3k Golang : Get absolute path to binary for os.Exec function with exec.LookPath
+8.8k Golang : Serving HTTP and Websocket from different ports in a program example
+13.1k Golang : Increment string example
+5.5k Golang : Struct field tags and what is their purpose?
+4.5k JavaScript: Add marker function on Google Map