JP2745500B2 - String search device - Google Patents

String search device

Info

Publication number
JP2745500B2
JP2745500B2 JP3324100A JP32410091A JP2745500B2 JP 2745500 B2 JP2745500 B2 JP 2745500B2 JP 3324100 A JP3324100 A JP 3324100A JP 32410091 A JP32410091 A JP 32410091A JP 2745500 B2 JP2745500 B2 JP 2745500B2
Authority
JP
Japan
Prior art keywords
search
character string
file
start position
specified
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.)
Expired - Fee Related
Application number
JP3324100A
Other languages
Japanese (ja)
Other versions
JPH05135105A (en
Inventor
道代 戸村
敬治 木場
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
NEC Corp
Original Assignee
NEC Corp
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by NEC Corp filed Critical NEC Corp
Priority to JP3324100A priority Critical patent/JP2745500B2/en
Publication of JPH05135105A publication Critical patent/JPH05135105A/en
Application granted granted Critical
Publication of JP2745500B2 publication Critical patent/JP2745500B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Landscapes

  • Document Processing Apparatus (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Description

【発明の詳細な説明】DETAILED DESCRIPTION OF THE INVENTION

【0001】[0001]

【産業上の利用分野】本発明は、ファイルの指定位置か
ら任意の文字列を検索する文字列検索装置に関するもの
である。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a character string search apparatus for searching for an arbitrary character string from a designated position in a file.

【0002】[0002]

【従来の技術】従来、文字列の検索を検索方向で分類す
ると、前方検索と後方検索に分けられる。図4は文字列
をデータとして扱うソフトウェアによる前方検索のフロ
ーチャートである。図において、前方検索機能が選択さ
れると、まず、検索文字列の読み込み1で、ユーザが指
定した検索の文字列を読み込む。次に、検索開始位置の
設定8で、ファイルのどの位置(何ライン目の何カラム
目)から前方検索を始めるかを決定する。
2. Description of the Related Art Conventionally, when character string searches are classified according to the search direction, they are divided into forward search and backward search. FIG. 4 is a flowchart of a forward search by software that handles character strings as data. In the figure, when the forward search function is selected, a search character string specified by the user is first read in a search character string read 1. Next, in the setting 8 of the search start position, it is determined from which position of the file (what line and column) the forward search is started.

【0003】そして、検索処理3でファイルの中から検
索文字列と一致する文字列を前方検索する。最後に、検
索の終了判定4では、検索位置がファイルの終端(以
後、EOF:End Of File)ならば前方検索
を終了し、EOFでなければ検索処理3に戻って前方検
索を続ける。検索開始位置は、カーソルが存在する位置
を用いたり、検索直前にユーザに検索開始位置を指定し
てもらうことによって決定する。
In search processing 3, a character string that matches the search character string is searched forward from the file. Finally, in search end determination 4, if the search position is at the end of the file (hereinafter EOF: End Of File), the forward search ends, and if not, the process returns to search process 3 to continue the forward search. The search start position is determined by using the position where the cursor exists or by having the user specify the search start position immediately before the search.

【0004】後方検索の場合は、図4のフローチャート
の中で、検索処理3が後方検索処理となり、検索の終了
判定4で検索位置がファイルの先頭ならば後方検索を終
了し、ファイルの先頭でなければ検索処理3に戻って後
方検索を続ける。
[0004] In the case of backward search, in the flowchart of FIG. 4, search processing 3 is backward search processing. If the search position is the head of the file in search end determination 4, the backward search is terminated. If not, the process returns to the search process 3 to continue the backward search.

【0005】エディタなどで図5のような“SUMMA
RY”から始まり“END”で終わるソースプログラム
のファイルをオープンしているとする。この時、エディ
タの検索機能を使用して、文字列“LOOP”を検索文
字列として指定し、プログラムの先頭を検索開始位置と
して前方検索を行う。まず“LOOP:”中の“LOO
P”を検索し、次に“BR LOOP2”中の“LOO
P”を検索し、以下同様にして“BR LOOP”中の
“LOOP”まで検索して行く。そして、検索位置がE
OFである“END”の後ろまで来ると検索を終了す
る。
[0005] "SUMMA" as shown in FIG.
Assume that a source program file starting with “RY” and ending with “END” is open. At this time, using the search function of the editor, the character string “LOOP” is specified as a search character string, and the beginning of the program is specified. A forward search is performed as a search start position.First, “LOO:” in “LOOP:”
P ”and then“ LOO ”in“ BR LOOP2 ”.
"P", and so on until "LOOP" in "BR LOOP" in the same manner.
The search is terminated when it reaches the end of “END” which is the OF.

【0006】検索開始位置をの領域に設定して検索文
字例“LOOP”の前方検索を行うと、まず“BR L
OOP2”中の“LOOP”から“BR LOOP”中
の“LOOP”までを検索して前方検索は終了し、“L
OOP:”中の“LOOP”は検索しない。一方、検索
開始位置をの領域に置いたまま検索文字列“LOO
P”の後方検索を行うと、“LOOP:”中の“LOO
P”を検索した後、検索位置がファイルの先頭である
“SUMMARY…”の前に来た時点で後方検索を終了
するので、“BR LOOP2”以降の“LOOP”を
検索しない。
When the search start position is set in the area and a forward search of the search character example "LOOP" is performed, first, "BR L
The search from “LOOP” in “OOP2” to “LOOP” in “BR LOOP” is completed, and the forward search is completed.
“LOOP” in “OOP:” is not searched. On the other hand, the search character string “LOO” is
When the backward search of “P” is performed, “LOO” in “LOOP:”
After searching for "P", the backward search is terminated when the search position comes before "SUMMARY ..." which is the head of the file, so "LOOP" after "BR LOOP2" is not searched.

【0007】[0007]

【発明が解決しようとする課題】ところで、上述した文
字列の検索において、ファイル全体を検索の対象とする
場合、従来の前方検索では、検索位置がファイルの終端
(EOF)に来た時点で検索を終了してしまうので、検
索開始位置をファイルの先頭に設定する必要があった。
しかも、検索開始位置をファイルの先頭に設定するため
には画面を切り替える操作(縦横スクロールやページ切
り替えなど)が必要で、ライン数やカラム数が多いファ
イルの場合は、画面の切り替えに時間を取られていた。
By the way, in the above-described character string search, when the entire file is to be searched, in the conventional forward search, the search is performed when the search position reaches the end of the file (EOF). Was terminated, so the search start position had to be set at the beginning of the file.
In addition, it is necessary to switch the screen (vertical and horizontal scrolling, page switching, etc.) to set the search start position to the beginning of the file. For a file with a large number of lines or columns, take time to switch the screen. Had been.

【0008】また、検索開始位置がファイルの先頭でな
ければ、検索は検索開始位置の前方で行われるため、検
索開始位置より後方に対して検索漏れが生じる可能性が
あった。特に、検索開始位置としていくつか設定方法が
ある場合、どの設定が有効になっているのかを確認して
おかないと、どこから前方検索が行われたのか分から
ず、検索漏れの原因となっていた。この検索漏れは後方
検索で解消できるが、結局、前方および後方の2回の検
索を行わなければならず、検索漏れは置換漏れを招くの
で、置換時も前方および後方の置換を行わなければなら
なかった。さらに、後方検索でも、前方検索と同様の問
題があった。
If the search start position is not the beginning of the file, the search is performed in front of the search start position, and there is a possibility that a search omission may occur behind the search start position. In particular, if there are several setting methods for the search start position, it is impossible to know where the forward search was performed from, and it became a cause of search omission unless you checked which setting was enabled . This search omission can be eliminated by the backward search, but after all, the forward and backward searches must be performed twice. Since the search omission causes the replacement omission, the forward and backward replacement must be performed at the time of replacement. Did not. Further, the backward search has the same problem as the forward search.

【0009】本発明は、上述した従来例における問題点
を解消するためになされたもので、検索開始位置をファ
イルの先頭や終端に設定することなく、また検索漏れも
生じることなく、一回の前方または後方検索によって文
字列の検索を行うことができる文字列検索装置を提供す
ることを目的とする。
SUMMARY OF THE INVENTION The present invention has been made to solve the above-described problems in the conventional example, and does not set a search start position at the beginning or end of a file and does not cause a search omission. It is an object of the present invention to provide a character string search device capable of searching for a character string by forward or backward search.

【0010】[0010]

【課題を解決するための手段】上記目的を達成するため
に、本発明に係る文字列検索装置は、ファイルの指定位
置から任意の文字列の検索を行う文字列検索装置におい
て、文字列検索時にファイル内の任意の指定検索開始位
置を保存する保存手段と、該検索開始位置から上記ファ
イル全体に対し指定された検索文字列の検索を行う検索
実行手段とを備えたことを特徴とするものである。
In order to achieve the above object, a character string search device according to the present invention provides a character string search device that searches for an arbitrary character string from a designated position of a file. Storage means for storing an arbitrary designated search start position in a file; and search execution means for performing a search for a designated search character string in the entire file from the search start position. is there.

【0011】また、別の発明に係る文字列検索装置は、
ファイルの指定位置から任意の文字列の検索を行う文字
列検索装置において、文字列検索時に一つのファイルま
たは複数のファイル間で指定した範囲内の任意の指定検
索開始装置を保存する保存手段と、該検索開始位置から
上記指定範囲全体に対して指定された検索文字列の検索
を行う検索実行手段とを備えたことを特徴とするもので
ある。
[0011] A character string search device according to another invention includes:
In a character string search device that searches for an arbitrary character string from a specified position of a file, a storage unit that saves one specified file or an arbitrary specified search start device within a specified range among a plurality of files during a character string search, Search execution means for searching for the specified search character string from the search start position to the entire specified range.

【0012】[0012]

【作用】上記構成による文字列検索装置においては、文
字列検索時にファイルもしくは指定範囲内の任意の指定
検索開始位置を保存し、該検索開始位置から前記ファイ
ルもしくは指定範囲全体に対して指定された検索文字列
の検索を行う。
In the character string search apparatus having the above-mentioned structure, at the time of a character string search, an arbitrary specified search start position in a file or a specified range is stored, and the specified file or the entire specified range is designated from the search start position. Search for a search string.

【0013】[0013]

【実施例】【Example】

第1実施例 次に、本発明について図を参照して説明する。まず、図
1は本発明に係る文字列検索を実行するためのハードウ
ェアブロック図を示し、このハードウェアは、文字列検
索のためのソフトウェアを実行するCPU10,該ソフ
トウェアと該ソフトウェアが取り扱うデータを格納する
メモリ20,および検索の対象であるファイル60が保
存されている補助記憶装置30で構成される。該ソフト
ウェアはプログラム領域40にロードされ、ファイル6
0は補助記憶装置30からデータ領域50内のファイル
60に転送される。また、検索開始位置70は、文字列
検索時に検索を開始する位置を示す検索開始位置データ
を保存する領域である。
First Embodiment Next, the present invention will be described with reference to the drawings. First, FIG. 1 shows a hardware block diagram for executing a character string search according to the present invention. The hardware includes a CPU 10 for executing software for a character string search, and the CPU 10 for executing the software and data handled by the software. It comprises a memory 20 for storing, and an auxiliary storage device 30 for storing a file 60 to be searched. The software is loaded into the program area 40 and the file 6
0 is transferred from the auxiliary storage device 30 to the file 60 in the data area 50. The search start position 70 is an area for storing search start position data indicating a position at which a search starts when a character string is searched.

【0014】図2は本発明の第1実施例に係る文字列検
索を実施するフローチャートで、一つのファイルの中か
ら見つけたい文字列を前方検索する場合を考える。ま
ず、検索文字列の読み込み1で検索する文字列を読み込
む。検索開始位置の保存2では、ファイル60のどの位
置から検索を始めるかを決定し、その位置データ(ライ
ン数とカラム数)である検索開始位置70に保存する。
検索開始位置70のデータは、一つの検索文字列に対す
る検索が終了するまで保存しておく。検索開始位置は、
カーソルが存在すればその位置を用いたり、検索のため
にユーザが指定した位置を用いたり、無指定の場合のデ
フォルト値を設けてファイル60の先頭や表示画面の左
上などの位置を利用し、優先順位によってこの中から一
つの検索開始位置を選択する。
FIG. 2 is a flowchart for executing a character string search according to the first embodiment of the present invention, and considers a case where a character string to be found is searched forward from one file. First, a character string to be searched in the reading of a search character string 1 is read. In the storage 2 of the search start position, which position of the file 60 to start the search is determined, and is stored in the search start position 70 which is the position data (the number of lines and the number of columns).
The data at the search start position 70 is stored until the search for one search character string is completed. The search start position is
If the cursor is present, use that position, use the position specified by the user for the search, or provide a default value in the case of no specification and use the position such as the top of the file 60 or the upper left of the display screen, One search start position is selected from among them according to the priority.

【0015】次に、検索処理3で、ファイル60の検索
開始位置70から検索文字列と一致する文字列を前方検
索する。検索処理において検索位置を移動していくが、
検索位置の判定5では検索位置がファイル60の終端で
あるEOFに来たかどうかを判定する。検索位置とEO
Fを比較して、不一致の時はまだファイル60の終わり
まで検索が完了していないことになり、そのまま前方検
索を続ける。また、一致した時はファイル60の終わり
まで検索が完了していることになり、ファイル60の先
頭から検索開始位置70までの範囲を検索するため、検
索位置の移動6で検索位置をファイル60の先頭に移動
した後、前方検索を続ける。
Next, in search processing 3, a character string that matches the search character string is searched forward from the search start position 70 of the file 60. The search position is moved in the search process,
In search position determination 5, it is determined whether the search position has reached the end of the file 60, EOF. Search position and EO
If F does not match, it means that the search has not been completed up to the end of the file 60, and the forward search is continued as it is. Also, when they match, it means that the search has been completed up to the end of the file 60, and to search the range from the beginning of the file 60 to the search start position 70, the search position is moved to the search position 6 by moving the search position 6. After moving to the beginning, continue the forward search.

【0016】一つの検索文字列の検索の終了判定は、検
索処理3の後の検索の終了判定4で、検索位置が検索開
始位置70に来たかどうかで判定する。検索位置が検索
開始位置70でなければまだ未検索の範囲が残っている
ことになるので、検索位置の判定5で検索位置の判定を
行った後、検索処理3へ戻って前方検索を続ける。ま
た、検索位置が検索開始位置70に一致した時はファイ
ル60全体の検索が完了したことになるので、検索を終
了する。
The end of the search for one search character string is determined by whether or not the search position has reached the search start position 70 in a search end determination 4 after the search processing 3. If the search position is not the search start position 70, an unsearched range still remains, so the search position is determined in the search position determination 5, and the process returns to the search process 3 to continue the forward search. When the search position matches the search start position 70, the search of the entire file 60 has been completed, and the search is terminated.

【0017】すなわち、上述した図2に示すフローチャ
ートにおいては、1〜2が文字列検索時にファイル内の
任意の指定検索開始位置を保存する保存手段を構成し、
3〜6が上記検索開始位置から上記ファイル全体に対し
指定された検索文字列の検索を行う検索実行手段を構成
する。
That is, in the flowchart shown in FIG. 2 described above, 1 and 2 constitute storage means for storing an arbitrary designated search start position in a file at the time of character string search,
Reference numerals 3 to 6 constitute search execution means for searching a specified search character string for the entire file from the search start position.

【0018】なお、ワープロやエディタなどでは一つの
ファイル内で検索を行うが、プログラムのデバッグなど
で複数のモジュール(ファイルと同形式)で構成される
ファイル全体を検索の対象とする場合は、位置データの
要素としてモジュール名を加える。そして、検索位置が
あるモジュールのEOFに来た時は検索位置を次のモジ
ュールの先頭に移動し、検索位置の判定5の判定基準を
最後のモジュールのEOFに置き換えれば、この文字列
検索方法を利用することができる。さらに、このような
ファイルの中のモジュールを単位として検索することも
できる。
In a word processor or an editor, a search is performed in a single file. However, if the entire file composed of a plurality of modules (same format as a file) is to be searched for, for example, in debugging a program, the position of Add the module name as a data element. When the search position comes to the EOF of a certain module, the search position is moved to the head of the next module, and if the criterion of the determination 5 of the search position is replaced with the EOF of the last module, this character string search method can be performed. Can be used. Further, it is also possible to search for a module in such a file as a unit.

【0019】以上に述べた文字列検索方法は前方検索と
限定したが、後方検索としてもかまわない。後方検索の
場合、検索処理3が後方検索処理となり、検索位置の判
定5の判定基準をファイル60の先頭とし、検索位置が
ファイル60の先頭に来た時検索位置の移動6で検索位
置をファイル60の最終文字の前に移動すれば、前方検
索の場合と同様の処理を行うことができる。
The character string search method described above is limited to forward search, but may be backward search. In the case of the backward search, the search process 3 is a backward search process, and the determination criterion of the search position determination 5 is the head of the file 60. When the search position comes to the head of the file 60, the search position is moved by the search position 6 If it moves before the last character of 60, the same processing as the case of the forward search can be performed.

【0020】第2実施例 図3は本発明の第2実施例に係る文字列検索を実施する
フローチャートで、一つのファイルの中である範囲を指
定してその中で見つけたい文字列を前方検索する場合を
考える。まず、検索文字列の読み込み1で検索する文字
列を読み込む。検索範囲の決定7では、ユーザに検索対
象とする範囲を指定してもらい、その範囲の先頭と終端
の位置データ(ライン数とカラム数)である検索範囲先
頭位置および検索範囲終端位置を保存する。検索範囲終
端位置は検索範囲の最終文字の次の文字の位置であり、
検索範囲の最終文字がファイルの最終文字のならば検索
範囲終端位置はEOFとなる。検索開始位置の保存2で
は、ファイルのどの位置から検索を始めるかを決定し、
その位置データを保存する。検索範囲先頭位置,検索範
囲終端位置および検索開始位置のデータは、一つの検索
文字列に対する検索が終了するまで保存しておく。
Second Embodiment FIG. 3 is a flowchart for performing a character string search according to a second embodiment of the present invention. A range is designated in one file, and a character string to be found therein is searched forward. Think about it. First, a character string to be searched in the reading of a search character string 1 is read. In the search range determination 7, the user specifies a range to be searched, and the search range start position and the search range end position, which are the position data (the number of lines and the number of columns) of the start and end of the range, are stored. . The search range end position is the position of the character following the last character of the search range,
If the last character of the search range is the last character of the file, the search range end position is EOF. In the search start position saving 2, in which position of the file to start the search is determined,
Save the position data. The data of the search range start position, the search range end position, and the search start position are stored until the search for one search character string is completed.

【0021】検索開始位置は、カーソルが存在すればそ
の位置を用いたり、検索のためにユーザが指定した位置
を用いたり、無指定の場合のデフォルト値を設けてファ
イルの先頭や表示画面の左上などの位置を利用し、優先
順位によってこの中から一つの検索開始位置を選択す
る。この場合、検索開始位置が検索範囲内にあることが
前提条件となる。
The search start position uses the position of the cursor if it exists, uses the position specified by the user for the search, or sets a default value in the case of no specification to set the start of the file or the upper left corner of the display screen. One of the search start positions is selected from the positions according to the priority order. In this case, a precondition is that the search start position is within the search range.

【0022】次に、検索処理3で、ファイルの検索開始
位置から検索文字列と一致する文字列を前方検索する。
検索処理において検索位置を移動していくが、検索位置
の判定5では検索位置が検索範囲終端位置に来たかどう
かを判定する。検索位置と検索範囲終端位置を比較し
て、不一致の時はまだ検索範囲の終わりまで検索が完了
していないことになり、そのまま前方検索を続ける。ま
た、一致した時は検索範囲の終わりまでが検索が完了し
ていることになり、検索範囲先頭位置から検索開始位置
までの範囲を検索するため、検索位置の移動6で検索位
置を検索範囲先頭位置に移動した後前方検索を続ける。
Next, in search processing 3, a character string that matches the search character string is searched forward from the search start position of the file.
The search position is moved in the search processing. In search position determination 5, it is determined whether the search position has reached the end position of the search range. The search position and the search range end position are compared. If they do not match, it means that the search has not been completed up to the end of the search range, and the forward search is continued as it is. Also, when they match, it means that the search has been completed up to the end of the search range. In order to search the range from the start position of the search range to the search start position, the search position is moved to the start of the search range by moving the search position 6. After moving to the position, continue the forward search.

【0023】一つの検索文字列の検索の終了判定は、検
索処理3の後の検索の終了判定4で、検索位置が検索開
始位置に来たかどうかで判定する。検索位置が検索開始
位置でなければまだ未検索の範囲が残っていることにな
るので、検索位置の判定5で検索位置の判定を行った
後、検索処理3へ戻って前方検索を続ける。また、検索
位置が検索開始位置に一致した時は全検索範囲の検索が
完了したことになるので、検索を終了する。
The end of the search for one search character string is determined by whether the search position has reached the search start position in the search end determination 4 after the search processing 3. If the search position is not the search start position, an unsearched range still remains, so the search position is determined in the search position determination 5, and the process returns to the search process 3 to continue the forward search. When the search position matches the search start position, it means that the search of the entire search range has been completed, and the search ends.

【0024】すなわち、上述した図3に示すフローチャ
ートにおいては、1,7,2が文字列検索時に一つのフ
ァイルまたは複数のファイル間で指定した範囲内の任意
の指定検索開始位置を保存する保存手段を構成し、3〜
6が、該検索開始位置から上記指定範囲全体に対して指
定された検索文字列の検索を行う検索実行手段を構成し
ている。
That is, in the flowchart shown in FIG. 3 described above, storage means 1, 7, and 2 store arbitrary designated search start positions within a range designated between one file or a plurality of files at the time of character string search. And 3 to
6 constitutes a search execution unit for searching for a specified search character string from the search start position to the entire specified range.

【0025】なお、ワープロやエディタなどでは一つの
ファイル内で検索を行うが、プログラムのデバッグなど
で複数のモジュール(ファイルと同形式)で構成される
ファイルを検索の対象とする場合には、位置データの要
素としてモジュール名を加えることによって、複数のモ
ジュールにまたがって指定された検索範囲に於いてこの
文字列検索方法を利用することができる。
In a word processor or an editor, a search is performed within one file. However, when a file composed of a plurality of modules (same format as a file) is to be searched for, for example, debugging of a program, the position of the file is determined. By adding a module name as a data element, this character string search method can be used in a search range specified over a plurality of modules.

【0026】以上に述べた文字列検索方法は前方検索と
限定したが、後方検索としてもかまわない。後方検索の
場合、検索処理3が後方検索処理となり、検索位置の判
定5の判定基準を検索範囲先頭位置とし、検索位置が検
索範囲の先頭に来た時検索位置の移動6で検索位置を検
索範囲終端位置の1文字前に移動すれば、前方検索の場
合と同様の処理を行うことができる。
The character string search method described above is limited to forward search, but may be backward search. In the case of a backward search, the search process 3 is a backward search process, and the criterion of the search position determination 5 is the search position head position. When the search position comes to the head of the search range, the search position is searched by the movement 6 of the search position. If it moves one character before the range end position, the same processing as in the case of the forward search can be performed.

【0027】[0027]

【発明の効果】以上説明したように本発明は、1つの検
索文字列の検索を終了するまでにファイル(もしくは指
定した検索範囲)全体を一通り検索するので、検索開始
位置をファイル(もしくは指定した検索範囲)の先頭や
終端に設定すること無く、検索開始位置がファイル(も
しくは指定した検索範囲)のどの位置に設定されていて
もそれを確認すること無く、検索漏れも無く、1回の前
方または後方検索によって、ファイル(もしくは指定し
た検索範囲)全体に対する検索文字列の検索を行うこと
ができるという効果を有する。
As described above, according to the present invention, the entire file (or the specified search range) is searched until the search for one search character string is completed. The search start position is not set at the beginning or end of the file, or the search start position is set at any position of the file (or the specified search range). This has an effect that a search for a search character string can be performed for the entire file (or a specified search range) by a forward or backward search.

【図面の簡単な説明】[Brief description of the drawings]

【図1】本発明に係る文字列検索を実現するためのハー
ドウェアブロック図である。
FIG. 1 is a hardware block diagram for implementing a character string search according to the present invention.

【図2】本発明の第1実施例のフローチャートである。FIG. 2 is a flowchart of the first embodiment of the present invention.

【図3】本発明の第2実施例のフローチャートである。FIG. 3 is a flowchart of a second embodiment of the present invention.

【図4】従来例のフローチャートである。FIG. 4 is a flowchart of a conventional example.

【図5】従来例の説明で使用したソースプログラムの例
示図である。
FIG. 5 is an illustration of a source program used in the description of the conventional example.

【符号の説明】[Explanation of symbols]

1 検索文字列の読み込み 2 検索開始位置の保存 3 前方または後方検索処理 4 検索の終了判定 5 検索位置の判定 6 検索位置の移動 7 検索範囲の決定 8 検索開始位置の設定 10 CPU 20 メモリ 30 補助記憶装置 40 メモリ内のプログラム領域 50 メモリ内のデータ領域 60 ファイル 70 検索開始位置 1 Search character string reading 2 Search start position storage 3 Forward or backward search processing 4 Search end determination 5 Search position determination 6 Search position movement 7 Search range determination 8 Search start position setting 10 CPU 20 Memory 30 Auxiliary Storage device 40 Program area in memory 50 Data area in memory 60 File 70 Search start position

───────────────────────────────────────────────────── フロントページの続き (56)参考文献 特開 平2−45876(JP,A) 特開 昭63−19066(JP,A) 特開 昭63−201766(JP,A) 特開 昭62−180459(JP,A) ニュートン別冊 ワードプロセッサの すべて最新版 PP.154−155,株式会 社教育社,昭和58年10月13日 ──────────────────────────────────────────────────続 き Continuation of the front page (56) References JP-A-2-45876 (JP, A) JP-A-63-19066 (JP, A) JP-A-63-201766 (JP, A) JP-A-62-1987 180459 (JP, A) Newton separate volume All the latest versions of word processors PP. 154-155, Education Corporation, October 13, 1983

Claims (2)

(57)【特許請求の範囲】(57) [Claims] 【請求項1】 ファイルの指定位置から任意の文字列の
検索を行う文字列検索装置において、文字列検索時にフ
ァイル内の任意の指定検索開始位置を保存する保存手段
と、該検索開始位置から上記ファイル全体に対し指定さ
れた検索文字列の検索を行う検索実行手段とを備えたこ
とを特徴とする文字列検索装置。
1. A character string search apparatus for searching for an arbitrary character string from a specified position in a file, a storage means for storing an arbitrary specified search start position in the file at the time of a character string search, and A character string search device comprising: a search execution unit that searches a specified search character string for the entire file.
【請求項2】 ファイルの指定位置から任意の文字列の
検索を行う文字列検索装置において、文字列検索時に一
つのファイルまたは複数のファイル間で指定した範囲内
の任意の指定検索開始位置を保存する保存手段と、該検
索開始位置から上記指定範囲全体に対して指定された検
索文字列の検索を行う検索実行手段とを備えたことを特
徴とする文字列検索装置。
2. A character string search device for searching for an arbitrary character string from a specified position of a file, wherein at the time of the character string search, an arbitrary specified search start position within a range specified between one file or a plurality of files is stored. A character string search apparatus, comprising: a storage unit for performing a search for a specified search character string in the entire specified range from the search start position.
JP3324100A 1991-11-13 1991-11-13 String search device Expired - Fee Related JP2745500B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP3324100A JP2745500B2 (en) 1991-11-13 1991-11-13 String search device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP3324100A JP2745500B2 (en) 1991-11-13 1991-11-13 String search device

Publications (2)

Publication Number Publication Date
JPH05135105A JPH05135105A (en) 1993-06-01
JP2745500B2 true JP2745500B2 (en) 1998-04-28

Family

ID=18162163

Family Applications (1)

Application Number Title Priority Date Filing Date
JP3324100A Expired - Fee Related JP2745500B2 (en) 1991-11-13 1991-11-13 String search device

Country Status (1)

Country Link
JP (1) JP2745500B2 (en)

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
ニュートン別冊 ワードプロセッサのすべて最新版 PP.154−155,株式会社教育社,昭和58年10月13日

Also Published As

Publication number Publication date
JPH05135105A (en) 1993-06-01

Similar Documents

Publication Publication Date Title
JPH06309370A (en) Equipment and method for data retrieving
JP2000276485A (en) Electronic dictionary device and recording medium where electronic dictionary program is recorded
JP2745500B2 (en) String search device
JPH0561758A (en) Information link device
JP2702356B2 (en) Debug information access method
JPS58114275A (en) Pattern information retrieving system
US5996053A (en) Method and apparatus for fetching classified and stored information
JP2639349B2 (en) Error correction line search device
JPH03129570A (en) Data base retrieving system
JPS62272365A (en) Document image electronic filing device
JPH0644300A (en) Information retrieving device
JP3069384B2 (en) Document processing apparatus and method
JP2762549B2 (en) Program correction device
JP2838972B2 (en) Automatic indexing device
JP3019104B2 (en) File processing device
JPH05266021A (en) Data retrieving method
JPH05135112A (en) Information processor
JPH07282073A (en) Data retrieving device and its method
JPH0752451B2 (en) Information retrieval device
JPH0554079A (en) Information processor
JPH0254323A (en) Retrieving system for screen input item
JPH05108438A (en) Quick access system in input/output of data
JPH06230952A (en) Program editing device
JPS63291116A (en) File access system
JPH0573277A (en) Saving system for work area

Legal Events

Date Code Title Description
FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20080213

Year of fee payment: 10

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20090213

Year of fee payment: 11

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20100213

Year of fee payment: 12

LAPS Cancellation because of no payment of annual fees