# Elasticsearch: Handling fuzziness

**URL:** https://discuss.elastic.co/t/elasticsearch-handling-fuzziness/161653
**Category:** Elasticsearch
**Created:** [December 20, 2018, 10:01am UTC](https://discuss.elastic.co/t/elasticsearch-handling-fuzziness/161653 "2018-12-20T10:01:33Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![rahulnama](https://avatars.discourse-cdn.com/v4/letter/r/8c91f0/32.png) [@rahulnama](https://discuss.elastic.co/u/rahulnama)
#### Post date: [December 20, 2018, 10:01am UTC](https://discuss.elastic.co/t/elasticsearch-handling-fuzziness/161653/1 "2018-12-20T10:01:33Z")

</div>

Hi Team

I've indexed few pdf files and using custom analyzer to removes stop words and to lowercase the letters.

Query:

```
GET testindex/_search
{   
  "explain": true, 
  "_source" : "url",
    "query": {
        "match" : {
            "content" : {
                "query" : "keybord not working"
                , "operator": "and",
                        "fuzziness": 1

            }
        }
    }
}

```

When I search this query, I can see that it's also searching for "dot", "got" etc.

Instead as I'm using analyzer to remove stop words, does elasticsearch wont apply analyzer first and then apply fuzzy words to match?

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [January 17, 2019, 10:01am UTC](https://discuss.elastic.co/t/elasticsearch-handling-fuzziness/161653/2 "2019-01-17T10:01:36Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
