Help > Web Development > Object Reference > Object Reference > ISYSIndex > PerformEnglishFind Method
<a name="kanchor432"></a>ISYSIndex:PerformEnglishFind Method
Executes a Plain English query (PEQ) against the index returning an ISYSResultList.

Note: This method is provided for compatibility with ISYS 6. Applications should use the ISYSSearch object.

Syntax
[VBScript]
function ISYSIndex.PerformEnglishFind(_
  string Query_ 
) as ISYSResultList
[C#]
IISYSResultList  IISYSIndex.PerformEnglishFind(
  string Query
);
[ColdFusion/Java]
IISYSResultList  IISYSIndex.PerformEnglishFind(
  java.lang.String Query
) throws ComException;
Parameters
QueryString specifying the Plain English query to perform

Examples
[VBScript]
<% dim index, results set index = Application("ISYS").OpenIndex("c:\index") set results = index.PerformEnglishFind(Request("search")) %>