EP0179215A2 - Verfahren zur Prüfung der Rechtschreibung eines gesetzten Wortes - Google Patents
Verfahren zur Prüfung der Rechtschreibung eines gesetzten Wortes Download PDFInfo
- Publication number
- EP0179215A2 EP0179215A2 EP85110142A EP85110142A EP0179215A2 EP 0179215 A2 EP0179215 A2 EP 0179215A2 EP 85110142 A EP85110142 A EP 85110142A EP 85110142 A EP85110142 A EP 85110142A EP 0179215 A2 EP0179215 A2 EP 0179215A2
- Authority
- EP
- European Patent Office
- Prior art keywords
- word
- dictionary
- words
- compound
- text
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Granted
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/20—Natural language analysis
- G06F40/232—Orthographic correction, e.g. spell checking or vowelisation
Definitions
- This invention relates to spelling verification in general, and more particularly to spelling verification of compound words by reference to a data base which does not include all verifiable compounds.
- the parser in attempting to verify the word "hotspot” as a correctly spelled word, the parser would find the "ts” break point, break the word in to "hot” and “spot” and would then find both of these parts in the dictionary. The word would then be judged correctly spelled, and on this basis could also be hyphenated between the constituents, e.g. - "hot-spot".
- a further flaw in a break point parsing technique is that not all misspelled words will be correctly identified as such because compounds composed of two unrelated but correctly spelled words which may be parsed into two correct words are verified as correctly spelled words. For example, a misspelling of "overtime” as "evertime” would not be caught by a break point parser, since "ever” and “time” are both correctly spelled words. Likewise, run-on words such as "suchas” will be verified as “correct” compounds. This is a particularly serious drawback, since the user trusts that the system will find these types of typographical errors and mis- spellings. This particular problem relates to the detection of errors. For the purposes of this application, an error is defined as a misspelling which is not caught by the system, and therefore, verified as a correct spelling.
- false alarms are defined as correctly spelled words which are not recognized by the spelling checker and are, therefore, flagged as misspelled words.
- the break point parsing technique described above sometimes becomes "confused" when several letters in the first part of a compound look like another good word. If the remainder of the compound cannot be found and the parsing algorithm does not successfully recover, a perfectly good word may be marked as misspelled, even though its constituents are in the dictionary.
- a further limitation of the break point parsing technique described above involves hyphenation errors. If the parser is contributing information to an automatic hyphenation program, correctly spelled words may suffer from mishyphenation on the basis of break points when the wrong pair of words is identified as the constituents of the compound. For example, “snakeskin” might be incorrectly parsed as “snakes-kin”, or “pantscuff” might be incorrectly parsed as “pant-scuff”. This turns the word to apparent nonsense for a reader who tries to reconstruct it on the basis of its supposed hyphenation at the compound joint.
- substring refers to an initial substring, meaning a sequence of text characters beginning with the first character of the input word and ending prior to the end of the input word.
- the remainder of the input word, beginning with the next character beyond the last character of the longest matching substring, is then compared with the dictionary. If it is not in the dictionary, the system recalls the next-longest substring and the remainder of the input word beyond this next-longest substring is tested for a match with the dictionary words.
- the novel parsing technique of this invention is applicable to any of the languages which form new vocabulary items by combining shorter words in a rule-governed manner by including a measure of artificial intelligence to enable the parsing system to distinguish whether two supposed, correctly spelled compound constituents are positionally compatible, or whether they are one of the spurious cases described above in which two words, otherwise correctly spelled, are improperly combined into a compound (e.g., "throughchair").
- This artificial intelligence is added to the system by use of flags stored with the words in the dictionary data base which indicate the manner in which the word may participate in compounding, if at all.
- the parser breaks a candidate word into two correctly spelled constituent words, their compounding features are examined to determine whether they form an acceptable combination. If the features do not match, the word is marked as a misspelling, even though both parts were found in the dictionary.
- a block diagram is shown of the data flow of the compound word spelling verification technique of this invention.
- This invention is used with a Text Editor 1 which may, for example, be an IBM Personal Computer running an IBM DisplayWrite 2 program to enable the IBM Personal Computer to perform a variety of word processing tasks and applications.
- a popular one of these word processing applications is "Spelling Tasks" which can be used to verify the spelling of words in a document.
- the words in a document are compared with the contents of a stored dictionary data base so that words can be highlighted which do not appear to be correctly spelled.
- many proper names and some other words are not ordinarily found in the dictionary, but one important operational goal is to have the system highlight as few correctly spelled words as possible.
- the text editor program sends individual words to be verified to the Compound Parsing Algorithm 2.
- the word sent from the Text Editor 1 to the Compound Parsing Algorithm 2 for verification is conveyed along the Word or Substring line to the Word Decode Algorithm 3 for comparison with words stored in Dictionary 4.
- a logical point in the dictionary will be chosen to begin comparisons of the Dictionary 4 words with the word to be verified, as will be understood by those skilled in the art. For example, rather than starting at the beginning of the dictionary for each verification operation, the comparison process in the Dictionary 4 would begin with the words stored therein which begin with the same letter as the word to be verified.
- the Word Decode Algorithm 3 conveys each of the substrings which match to the Compound Parsing Algorithm 2.
- the remainder of the word following the longest substring is then conveyed back to the Word Decode Algorithm 3 for comparing to the words in Dictionary 4.
- "cuff” is sent back to the Word Decode Algorithm for comparison with the words in Dictionary 4.
- the words in the Dictionary 4 beginning with c are accessed to determine if a comparison exists between the "remainder" substring in the word to be verified and the words in Dictionary 4.
- "cuff” will be found in the Dictionary 4 and this fact will be conveyed along the Substring Match line from Word Decode Algorithm 3 to the Compounding Parsing Algorithm 4.
- a Shadow Table 5 stores data associated with each of the words in Dictionary 4. Although this Shadow Table 5 is shown in
- Shadow Table 5 can exist as a partitioned area of the memory which stores Dictionary 4.
- the information stored in Shadow Table 5 can, instead of being stored separately, be stored along with the words in Dictionary 4.
- This information stored relative to the words in Dictionary 4 denotes the suitability for and circumstances under which the words in Dictionary 4 may be compounded, if compounding is allowable at all.
- the information relative thereto in the Shadow Table 5 may have indicated that "pants” could occur alone or in the front portion of a compound while the information in Shadow Table 5 relative to "cuff” may have indicated that it could occur alone or in the last portion of a compound.
- the Compound Parsing Algorithm 2 cannot verify this combination of substrings as a compound word.
- the remainder of the word following the next longest substring is compared with the words in Dictionary 4.
- the next longest substring is "snake” so the remainder following this next longest substring is "skin". This is found in Dictionary 4 and the Shadow Table 5 information relative to "skin" indicates that it may be used alone, at the front, or at the end of a compound word.
- the Compound Parsing Algorithm 2 can then verify "snakeskin" to the Text Editor 1 as a correctly spelled word.
- the detailed flow chart of the compound word spelling verification technique of this invention is shown in Fig. 2.
- the first step of this technique is to get a text word for verification as indicated at 10. Assume now that verification is being attempted for the compound word "overtime”.
- the flow chart of Fig. 2 has two major loops: A "look-up" loop and a “compound parsing" loop. Considering first the look-up loop, this loop compares dictionary entries to the input word. Dictionary entries which are substrings of the input word are "remembered” in a list. Before entering the look-up loop, a flag "matched", indicated at block 11, indicates whether the text word matches a dictionary entry. The "matched" flag is set to false to indicate that the text word has not yet been found in the dictionary. Next, the first relevant dictionary entry from the dictionary is accessed at 12. The first relevant word might be, for example, the first word in the dictionary beginning with the same alphabetic letter as the text word to be verified.
- the first relevant word to be accessed might be the first word beginning with the first three letters of the text word to be verified.
- the flag "end of dict" (end of dictionary) is set equal to true, instead. For example, if the first three letters of the input word are used to determine a relevant portion of the dictionary, the "end of dict" flag would be set when no more words with the same first three letters could be found in the dictionary.
- the dictionary word most recently accessed is compared with the text word. If they are the same, and the input word is suitable for standing alone (as will be described below in detail), the "matched" flag is set to true and this dictionary word is saved as indicated at 15.
- this first dictionary word accessed is not the text word to be verified
- the operation proceeds to 16 where a test is performed to determine if the dictionary word is a substring of the text word. If so, the dictionary word is saved in a list of substrings of the text word, as indicated at 17. Also saved at 17 along with the substring is the "compound class" from the shadow table which indicates the suitability for compounding and the position in a compound word (if the substring is suitable) that the substring can take. As noted above relative to Fig.
- this shadow table information can be encoded in a minimum number of bits, as will be understood by those skilled in the art, to denote that the dictionary word can be used: (a) alone only and, therefore, not compoundable, (b) alone or as the front or middle of a compound word, (c) alone or anywhere in a compound word, (d) alone or as the back of a compound word, (e) only as the beginning or middle of a compound word, or (f) only as the back of a compound word.
- the words “over” and “overt” are saved in the substring list.
- the look-up loop would eventually be exited out of block 13 as a result of reaching the end of the relevant portion of the dictionary.
- the program exits this look-up loop there is a list of substrings which entries may be the first component in a compound word.
- the word is presumed to be correctly spelled and no further processing takes place.
- the word is considered to be misspelled.
- the compound parsing loop is entered because there was no match but there is a list of possible compound components.
- the compound parsing loop looks at the list of possible components, also referred to as first elements, and attempts to find another dictionary entry such that the two may be joined to form the input text word. Accordingly, at 19 if the pair of conditions: "matched" equals false and substrings in the list, do not both exist, the operation proceeds to block 20. If "matched” equals true, the word is considered verified, whereas if "matched” equals false, the word is considered misspelled because, in this case, there are no substrings in the list from which to continue attempting verification.
- the operation proceeds to 21 wherein the longest substring from the list is accessed and deleted from the list.
- the longest substring is "overt”.
- the remainder or second element of the word "overtime” is then processed at 22 to be "ime”, based on the definition of the second element being the input text word "overtime” minus the just accessed longest substring "overt”.
- another look-up loop indicated at 23, 24, and 25 is entered to determine if the remainder "ime" is in the dictionary.
- This look-up loop consists of looking at all relevant dictionary stems and setting a flag at 25 if the remainder "ime” matches a dictionary word, and the suitability for compounding at the "remainder" position in the input word is appropriate, as indicated by the shadow table information stored with each dictionary word.
- the input text word matches a word in the dictionary and it is suitable for compounding in this "remainder" portion of a compound word, the input text word is considered a correctly spelled compound word made up of two correctly spelled dictionary entries, suitable for compounding in the order appearing in the input text word.
- the flag "matched” is set to true. The operation returns to block 19 and proceeds to 20 for "matched" equals true.
- “Sun” is taken from “sunglasses” to give “glasses” as a candidate “remainder” or rear portion of the compound word.
- “Glasses” will be found in the dictionary.. Since “sun” is known to be the front element of many compounds (sunlight, sunshine, sunspot, etc.) its compound class marker designates it as a word that may be used alone or at the front of a compound word. Since “glasses” is known to be the rear element of some compounds (e.g., spyglasses) its compound class marker designates it as a known rear compound portion. Since the compound class markers are compatible in well formed compounds, the word is considered to be correctly spelled and the matched flag would be set.
- a program design language listing is shown below which also describes this compound word spelling verification technique of this invention. This listing parallels the operation described above relative to the flow chart of Fig. 2.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Health & Medical Sciences (AREA)
- Artificial Intelligence (AREA)
- Audiology, Speech & Language Pathology (AREA)
- Computational Linguistics (AREA)
- General Health & Medical Sciences (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Machine Translation (AREA)
- Document Processing Apparatus (AREA)
Applications Claiming Priority (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US06/664,184 US4672571A (en) | 1984-10-24 | 1984-10-24 | Compound word suitability for spelling verification |
US664184 | 1991-03-01 |
Publications (3)
Publication Number | Publication Date |
---|---|
EP0179215A2 true EP0179215A2 (de) | 1986-04-30 |
EP0179215A3 EP0179215A3 (en) | 1986-06-11 |
EP0179215B1 EP0179215B1 (de) | 1992-03-11 |
Family
ID=24664931
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
EP85110142A Expired - Lifetime EP0179215B1 (de) | 1984-10-24 | 1985-08-13 | Verfahren zur Prüfung der Rechtschreibung eines gesetzten Wortes |
Country Status (3)
Country | Link |
---|---|
US (1) | US4672571A (de) |
EP (1) | EP0179215B1 (de) |
DE (1) | DE3585588D1 (de) |
Cited By (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP0281742A2 (de) * | 1987-03-12 | 1988-09-14 | International Business Machines Corporation | Verfahren zur Prüfung der Rechtschreibung zusammengesetzter Wörter |
EP0283685A2 (de) * | 1987-03-27 | 1988-09-28 | International Business Machines Corporation | Verfahren zur Unterstützung der Rechtschreibung zusammengesetzter Wörter |
WO2008043582A1 (en) * | 2006-10-13 | 2008-04-17 | International Business Machines Corporation | Systems and methods for building an electronic dictionary of multi-word names and for performing fuzzy searches in said dictionary |
Families Citing this family (33)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5675821A (en) * | 1984-11-16 | 1997-10-07 | Canon Kabushiki Kaisha | Document processing apparatus and method |
DE3577937D1 (de) * | 1984-11-16 | 1990-06-28 | Canon Kk | Wortverarbeitungsgeraet. |
US4783758A (en) * | 1985-02-05 | 1988-11-08 | Houghton Mifflin Company | Automated word substitution using numerical rankings of structural disparity between misspelled words & candidate substitution words |
US4899128A (en) * | 1985-12-11 | 1990-02-06 | Yeda Research And Development Co., Ltd. | Method and apparatus for comparing strings using hash values |
JPS63766A (ja) * | 1986-06-20 | 1988-01-05 | Canon Inc | 文書処理装置 |
US4894798A (en) * | 1986-06-20 | 1990-01-16 | International Business Machines Corporation | Automatic stop code insertion feature for a word processing apparatus |
US4974195A (en) * | 1986-06-20 | 1990-11-27 | Canon Kabushiki Kaisha | Document processing apparatus |
JPS6359660A (ja) * | 1986-08-29 | 1988-03-15 | Brother Ind Ltd | 情報処理装置 |
EP0287713B1 (de) * | 1987-04-23 | 1994-06-22 | Océ-Nederland B.V. | Textverarbeitungssystem und -verfahren zur Prüfung des richtigen und folgerichtigen Gebrauchs von Einheiten und chemischen Formeln in einem Textverarbeitungssystem |
US4923314A (en) * | 1988-01-06 | 1990-05-08 | Smith Corona Corporation | Thesaurus feature for electronic typewriters |
JP2804403B2 (ja) * | 1991-05-16 | 1998-09-24 | インターナショナル・ビジネス・マシーンズ・コーポレイション | 質問回答システム |
NL9101285A (nl) * | 1991-07-23 | 1993-02-16 | Oce Nederland Bv | Inrichting en werkwijze voor het bepalen van gegevens van samengestelde woorden. |
DE4135261C1 (de) * | 1991-10-25 | 1993-03-18 | International Business Machines Corp., Armonk, N.Y., Us | |
US5625554A (en) * | 1992-07-20 | 1997-04-29 | Xerox Corporation | Finite-state transduction of related word forms for text indexing and retrieval |
US5867812A (en) * | 1992-08-14 | 1999-02-02 | Fujitsu Limited | Registration apparatus for compound-word dictionary |
US5917941A (en) * | 1995-08-08 | 1999-06-29 | Apple Computer, Inc. | Character segmentation technique with integrated word search for handwriting recognition |
JP3272288B2 (ja) * | 1997-12-24 | 2002-04-08 | 日本アイ・ビー・エム株式会社 | 機械翻訳装置および機械翻訳方法 |
US6424983B1 (en) | 1998-05-26 | 2002-07-23 | Global Information Research And Technologies, Llc | Spelling and grammar checking system |
SE519636C2 (sv) | 2000-07-06 | 2003-03-25 | Hapax Information Systems Ab | Förfarande och anordning för analys av sammansatta ord |
US7610189B2 (en) * | 2001-10-18 | 2009-10-27 | Nuance Communications, Inc. | Method and apparatus for efficient segmentation of compound words using probabilistic breakpoint traversal |
US7512717B2 (en) * | 2003-01-21 | 2009-03-31 | Nextio Inc. | Fibre channel controller shareable by a plurality of operating system domains within a load-store architecture |
US7747428B1 (en) * | 2003-09-24 | 2010-06-29 | Yahoo! Inc. | Visibly distinguishing portions of compound words |
US7447627B2 (en) * | 2003-10-23 | 2008-11-04 | Microsoft Corporation | Compound word breaker and spell checker |
US7421386B2 (en) * | 2003-10-23 | 2008-09-02 | Microsoft Corporation | Full-form lexicon with tagged data and methods of constructing and using the same |
GB0413743D0 (en) | 2004-06-19 | 2004-07-21 | Ibm | Method and system for approximate string matching |
US7538692B2 (en) * | 2006-01-13 | 2009-05-26 | Research In Motion Limited | Handheld electronic device and method for disambiguation of compound text input and for prioritizing compound language solutions according to quantity of text components |
US7698128B2 (en) * | 2006-01-13 | 2010-04-13 | Research In Motion Limited | Handheld electronic device and method for disambiguation of compound text input and that employs N-gram data to limit generation of low-probability compound language solutions |
US8630841B2 (en) | 2007-06-29 | 2014-01-14 | Microsoft Corporation | Regular expression word verification |
EP2534585A4 (de) * | 2010-02-12 | 2018-01-24 | Google LLC | Verbindungstrennung |
US20140025368A1 (en) * | 2012-07-18 | 2014-01-23 | International Business Machines Corporation | Fixing Broken Tagged Words |
IL224482B (en) * | 2013-01-29 | 2018-08-30 | Verint Systems Ltd | System and method for keyword spotting using representative dictionary |
IL242218B (en) | 2015-10-22 | 2020-11-30 | Verint Systems Ltd | A system and method for maintaining a dynamic dictionary |
IL242219B (en) | 2015-10-22 | 2020-11-30 | Verint Systems Ltd | System and method for keyword searching using both static and dynamic dictionaries |
Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US4342085A (en) * | 1979-01-05 | 1982-07-27 | International Business Machines Corporation | Stem processing for data reduction in a dictionary storage file |
EP0080045A2 (de) * | 1981-09-30 | 1983-06-01 | System Development Corporation | Digitales Datenverarbeitungsverfahren und Wortklassifizierung mittels Endungsanalyse |
EP0083393A2 (de) * | 1981-12-31 | 1983-07-13 | System Development Corporation | Verfahren zur Komprimierung von Information und eine Vorrichtung zur Komprimierung eines englischen Textes |
Family Cites Families (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US4471459A (en) * | 1981-09-30 | 1984-09-11 | System Development Corp. | Digital data processing method and means for word classification by pattern analysis |
US4453217A (en) * | 1982-01-04 | 1984-06-05 | Bell Telephone Laboratories, Incorporated | Directory lookup method and apparatus |
-
1984
- 1984-10-24 US US06/664,184 patent/US4672571A/en not_active Expired - Fee Related
-
1985
- 1985-08-13 EP EP85110142A patent/EP0179215B1/de not_active Expired - Lifetime
- 1985-08-13 DE DE8585110142T patent/DE3585588D1/de not_active Expired - Fee Related
Patent Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US4342085A (en) * | 1979-01-05 | 1982-07-27 | International Business Machines Corporation | Stem processing for data reduction in a dictionary storage file |
EP0080045A2 (de) * | 1981-09-30 | 1983-06-01 | System Development Corporation | Digitales Datenverarbeitungsverfahren und Wortklassifizierung mittels Endungsanalyse |
EP0083393A2 (de) * | 1981-12-31 | 1983-07-13 | System Development Corporation | Verfahren zur Komprimierung von Information und eine Vorrichtung zur Komprimierung eines englischen Textes |
Non-Patent Citations (3)
Title |
---|
COMMUNICATIONS OF THE ACM, vol. 23, no. 12, December 1980, pages 676-687, New York, US; J.L. PETERSON: "Computer programs for detecting and correcting spelling errors" * |
IBM TECHNICAL DISCLOSURE BULLETIN, vol. 26, no. 11, April 1984, page 6084, New York, US; R.G. CARLGREN: "Suffix-dependent dictionary parts-of-speech data storage technique" * |
IBM TECHNICAL DISCLOSURE BULLETIN, vol. 26, no. 11, April 1984, pages 6090-6091, New York, US; R.G. CARLGREN: "Suffix-dependent dictionary recognition level data storage technique" * |
Cited By (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP0281742A2 (de) * | 1987-03-12 | 1988-09-14 | International Business Machines Corporation | Verfahren zur Prüfung der Rechtschreibung zusammengesetzter Wörter |
EP0281742B1 (de) * | 1987-03-12 | 1991-10-09 | International Business Machines Corporation | Verfahren zur Prüfung der Rechtschreibung zusammengesetzter Wörter |
EP0283685A2 (de) * | 1987-03-27 | 1988-09-28 | International Business Machines Corporation | Verfahren zur Unterstützung der Rechtschreibung zusammengesetzter Wörter |
EP0283685A3 (en) * | 1987-03-27 | 1988-11-23 | International Business Machines Corporation | A spelling assistance method for compound words |
WO2008043582A1 (en) * | 2006-10-13 | 2008-04-17 | International Business Machines Corporation | Systems and methods for building an electronic dictionary of multi-word names and for performing fuzzy searches in said dictionary |
US8055498B2 (en) | 2006-10-13 | 2011-11-08 | International Business Machines Corporation | Systems and methods for building an electronic dictionary of multi-word names and for performing fuzzy searches in the dictionary |
Also Published As
Publication number | Publication date |
---|---|
EP0179215A3 (en) | 1986-06-11 |
DE3585588D1 (de) | 1992-04-16 |
EP0179215B1 (de) | 1992-03-11 |
US4672571A (en) | 1987-06-09 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US4672571A (en) | Compound word suitability for spelling verification | |
US4701851A (en) | Compound word spelling verification | |
EP0281742B1 (de) | Verfahren zur Prüfung der Rechtschreibung zusammengesetzter Wörter | |
US5956739A (en) | System for text correction adaptive to the text being corrected | |
US5437036A (en) | Text checking application programming interface | |
US7032174B2 (en) | Automatically adding proper names to a database | |
US5161245A (en) | Pattern recognition system having inter-pattern spacing correction | |
EP0155284B1 (de) | Verfahren zur lokalisierung von gegenstaenden eines sachregisters | |
WO1997004405A9 (en) | Method and apparatus for automated search and retrieval processing | |
JPH0877173A (ja) | 文字列修正システムとその方法 | |
EP0054658A1 (de) | Verfahren zur automatischen Prüfung und Korrektur der Rechtschreibung in einem Textverarbeitungssystem | |
US6470334B1 (en) | Document retrieval apparatus | |
Ndiaye et al. | A spell checker tailored to language learners | |
JPH06215184A (ja) | 抽出領域のラベリング装置 | |
JPH0244459A (ja) | 日本文訂正候補文字抽出方法 | |
JP3924899B2 (ja) | テキスト検索装置およびテキスト検索方法 | |
JP2908460B2 (ja) | 誤認識修正方法及び装置 | |
JPH06259481A (ja) | 同一文字種最長一致照合機能を備えた文字列照合方法および装置 | |
JP3788262B2 (ja) | 住所認識システム、及びその住所識別方法 | |
JP2918380B2 (ja) | 文字認識結果の後処理方法 | |
JPH08249427A (ja) | 文字認識方法および装置 | |
JPH06301822A (ja) | 文字認識後処理方式 | |
JPH0248938B2 (de) | ||
JP2503259B2 (ja) | 全角,半角文字の決定方法 | |
JPH01191230A (ja) | 情報検索装置 |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
PUAI | Public reference made under article 153(3) epc to a published international application that has entered the european phase |
Free format text: ORIGINAL CODE: 0009012 |
|
PUAL | Search report despatched |
Free format text: ORIGINAL CODE: 0009013 |
|
AK | Designated contracting states |
Kind code of ref document: A2 Designated state(s): BE DE FR GB NL SE |
|
AK | Designated contracting states |
Kind code of ref document: A3 Designated state(s): BE DE FR GB NL SE |
|
17P | Request for examination filed |
Effective date: 19860819 |
|
17Q | First examination report despatched |
Effective date: 19890810 |
|
GRAA | (expected) grant |
Free format text: ORIGINAL CODE: 0009210 |
|
AK | Designated contracting states |
Kind code of ref document: B1 Designated state(s): BE DE FR GB NL SE |
|
PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: SE Effective date: 19920311 Ref country code: NL Effective date: 19920311 Ref country code: BE Effective date: 19920311 |
|
REF | Corresponds to: |
Ref document number: 3585588 Country of ref document: DE Date of ref document: 19920416 |
|
ET | Fr: translation filed | ||
NLV1 | Nl: lapsed or annulled due to failure to fulfill the requirements of art. 29p and 29m of the patents act | ||
PLBE | No opposition filed within time limit |
Free format text: ORIGINAL CODE: 0009261 |
|
STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: NO OPPOSITION FILED WITHIN TIME LIMIT |
|
26N | No opposition filed | ||
PGFP | Annual fee paid to national office [announced via postgrant information from national office to epo] |
Ref country code: GB Payment date: 19960724 Year of fee payment: 12 |
|
PGFP | Annual fee paid to national office [announced via postgrant information from national office to epo] |
Ref country code: FR Payment date: 19960806 Year of fee payment: 12 |
|
PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: GB Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES Effective date: 19970813 |
|
PGFP | Annual fee paid to national office [announced via postgrant information from national office to epo] |
Ref country code: DE Payment date: 19970826 Year of fee payment: 13 |
|
GBPC | Gb: european patent ceased through non-payment of renewal fee |
Effective date: 19970813 |
|
PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: FR Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES Effective date: 19980430 |
|
REG | Reference to a national code |
Ref country code: FR Ref legal event code: ST |
|
PG25 | Lapsed in a contracting state [announced via postgrant information from national office to epo] |
Ref country code: DE Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES Effective date: 19990601 |