function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
RavishankarRavishankar 

File Content Searching

I am looking for a way of searching like this.

             When we type any word i.e..-abc...... In search bar than click on search button.

                       It retrieves all attachments i.e.. Document title starting with abc.....

In addition to this we require that it should retrieve all document in which abc.... Is specified.

             In other word content of any document containing abc.... Word should be fetched.

In return of the above stated query it should return.

1)-Title of the e file name where content is available.

2)-Last modified order by Title of file name.

 

Can any one help me about this.

 

Pradeep_NavatarPradeep_Navatar

Try out the SOSL query given below :

 

FIND {abc*} IN ALL FIELDS RETURNING Document (LastModifiedDate, Name order by Name)

 

Hope this helps.