Questions tagged [aspell]

GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell. It can either be used as a library or as an independent spell checker.

From aspell.net:

GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell. It can either be used as a library or as an independent spell checker. Its main feature is that it does a superior job of suggesting possible replacements for a misspelled word than just about any other spell checker out there for the English language. Unlike Ispell, Aspell can also easily check documents in UTF-8 without having to use a special dictionary. Aspell will also do its best to respect the current locale setting. Other advantages over Ispell include support for using multiple dictionaries at once and intelligently handling personal dictionaries when more than one Aspell process is open at once.

154 questions
0
votes
0 answers

Getting number of misspelled word in paragraph in php

I have a textarea in a form and the submitted form will give the result of number of mispelled word in a paragraph.As because i am using linux, i have tried to install the pspell for PHP 5 And i have installed this package sudo apt-get install…
lopamudra
  • 49
  • 9
0
votes
0 answers

Check part of a document with Aspell

I do notes from books and lectures, and I usually ended up with large text files that are updating. How do I use aspell, if possible, to just check the new text I added? let's say I added new text from line n to n+x. And I want to check just the x…
daleonpz
  • 581
  • 5
  • 13
0
votes
1 answer

I am trying to write a bash script that uses aspell to check spell check files

I have the following script at hand, i think there are errors but i don't have the knowledge to fix them. The problem is that the script returns nothing but it is supposed to return misspelled words. I run this script with this command $ sh…
Hüseyin Orkun Elmas
  • 2,613
  • 2
  • 9
  • 6
0
votes
1 answer

Where are the aspell libraries located on the server? How can I check for them?

I just switched to the cpanel servers with godaddy. I am completely integrated with pspell and it was working perfectly fine. now I get the following errors Warning: pspell_new(): PSPELL couldn't open the dictionary. reason: No word lists can be…
0
votes
1 answer

Installing aspell for python 3 on MacOS X

I am trying to install aspell for Python 3 (on MacOS X 10.11), and have encountered an issue (the same one) using both pip and the manual installer (by cloning the git repo). I have already installed aspell using MacPorts (sudo port install aspell)…
MarkB
  • 1,783
  • 2
  • 17
  • 32
0
votes
1 answer

Regexp and pspell_check with UTF-8 (Umlaute)

I'm having trouble with this piece of code. What it should do is take a string, split it by word, then check it against a dictionary. However when the string contains an "Umlaut" ÄäÖöÜü it splits it there. I'm pretty sure the problem is…
Shaeldon
  • 873
  • 4
  • 18
  • 28
0
votes
1 answer

How do we use our own dictionary in aspell instead of the default dictionary?

Can you tell me the format of specifying the dictionaries in the aspell function. Also what is the extension of dictionaries supposed to be?
Aradhya Kasat
  • 221
  • 1
  • 11
0
votes
1 answer

Character classes used in ffi-aspell

I am trying to use the ffi-aspell gem to spell check a text. In order to do that, it seems that I have to extract the words by myself. I am trying to do that by applying String#scan to the text with a regex, but it does not seem…
sawa
  • 165,429
  • 45
  • 277
  • 381
0
votes
1 answer

How to get compiler-like messages from ispell or aspell

Spell checking on multiple text files. Having an output of the form as 'gcc' produces it: intro/main.txt:12: 'hierarchie' -- orthograph concepts/detail/experiment.txt:12: 'propper' -- orthograph is a good formal description…
Frank-Rene Schäfer
  • 3,182
  • 27
  • 51
0
votes
1 answer

How to flag string if not in list

I'm interested in using Emacs (or similar) to rewrite documents in Simple English/Special English (two subsets of English that restrict themselves to simple words and grammar). Ideally, as I'm typing, a string that is not in one of the defined sets…
meatspace
  • 859
  • 16
  • 25
0
votes
0 answers

Aspell can't detect dictionaries in Emacs24 on Windows 7

I'm getting this error when I run Flyspell spell-checker in GNU Emacs 24.4.1 (i686-pc-mingw32) on Windows 7 (32 bits). Error in post-command-hook (flyspell-post-command-hook): (error "No data for dictionary \"italian"\ , neither in…
0
votes
1 answer

How to Install pspell with MAMP

I use MAMP for local php development and recently needed to use php's pspell functions for a project. I found little help with this specific scenario (short of recompiling php, yuck) so this post explains how I got it done.
Marty Mulligan
  • 1,134
  • 7
  • 9
0
votes
2 answers

pspell returns question marks(�)

I've tried to install pspell on an Ubuntu trusty distribution with the following commands: sudo apt-get install libpspell-dev sudo apt-get install php5-pspell sudo apt-get install aspell-he The process seems to have succeeded since there was no…
kfirba
  • 5,231
  • 14
  • 41
  • 70
0
votes
1 answer

R: Want to do a dictionary check and remove unwanted space in between where removing space will make it a proper word

I am using R for text mining and have data that have been concatenated from different text columns. There are cases where words have been split by a space like"functi oning". I want to detect all such cases and remove space in between by doing…
0
votes
1 answer

Ultrasphinx and Rails: Completely wrong results - Why?

I'm using Ultrasphinx for searching on a Rails App. Everything seems to be working, the only thing is that the search results are not matching the search query in any way. I really don't understand this. I rebuilt my indexes and config files several…
Ole Spaarmann
  • 15,845
  • 27
  • 98
  • 160