---
title: "Different between find and findExact method in Sencha Touch"  
description: "Different between find and findExact method in Sencha Touch"  
author: "Samuel Fernandes"  
published: 2013-06-14  
updated: 2013-07-24  
canonical: https://www.mindstick.com/forum/1080/different-between-find-and-findexact-method-in-sencha-touch  
category: "sencha touch"  
tags: ["sencha touch"]  
reading_time: 1 minute  

---

# Different between find and findExact method in Sencha Touch

Hi [Developers](https://www.mindstick.com/articles/12875/blunders-you-must-avoid-while-hiring-java-developers-to-get-the-best-fulfilling-your-needs),\
I'm new in **[Sencha Touch](https://www.mindstick.com/interview/23004/define-class-system-of-sencha-touch)** Development. I have no much information about **Sencha Touch**. Can you tell me what it different between **find** and **findExact**.\
Thanks in advance.

## Replies

### Reply by Anonymous User

Hi Samuel Fernandes,

find and findExact both are using for retrieving record from Store but there is only difference is that find method search data in Store as like wildcard whereas findExact searched exact data from store.

Suppose that store containing following record:

dummyStore: [{‘Name’: ‘Samuel’ },

{‘Name’: ‘Samuel Fernandes’}]

In the case of dummyStore.find(‘Name’, ‘Samuel’) it will returns two index (both two record) but in the case of dummyStore.findExact(‘Name’, ‘Samuel’) it will returns only one index.

I hope it will quite helpful for you. Thanks!!


---

Original Source: https://www.mindstick.com/forum/1080/different-between-find-and-findexact-method-in-sencha-touch

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
