# FuzzySearch

> Provides a method to match query text using a fuzzy search algorithm.

## Definition

* **Type:** Class
* **Namespace:** [UnityEditor.Search](/engine/6000.7/script-reference/unityeditor/search.md)
* **Assembly:** UnityEditor

```csharp
public static class FuzzySearch
```

## Remarks

This utility class implements the text search functions using approximate string matching (fuzzy search). Search for a text pattern in a given string. If there is a match, get the match score. Get the indices in the string where the pattern was found.

See [FuzzyMatch](/engine/6000.7/script-reference/unityeditor/search/fuzzysearch/fuzzymatch.md) for a complete example.

## Static Methods

| Method                                                                                     | Description                                        |
| ------------------------------------------------------------------------------------------ | -------------------------------------------------- |
| [FuzzyMatch](/engine/6000.7/script-reference/unityeditor/search/fuzzysearch/fuzzymatch.md) | Performs a fuzzy search for a pattern on a string. |
