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
+7.1k Golang : Array mapping with Interface
+7.6k Golang : Mapping Iban to Dunging alphabets
+15.2k Golang : Accurate and reliable decimal calculations
+6.1k Linux/Unix : Commands that you need to be careful about
+5.5k Python : Print unicode escape characters and string
+9.7k Random number generation with crypto/rand in Go
+21.7k Golang : Setting up/configure AWS credentials with official aws-sdk-go
+14.7k Golang : Get URI segments by number and assign as variable example
+4.8k Javascript : How to get width and height of a div?
+7.9k Golang : Grayscale Image
+62.6k Golang : Convert HTTP Response body to string
+25.3k Golang : Convert long hexadecimal with strconv.ParseUint example