# SplitEntryComponents(string, char[])

> Split an entry according to a specified list of separators.

## Definition

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

```csharp
public static IEnumerable<string> SplitEntryComponents(string entry, char[] entrySeparators)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): Entry to split.**** (\[char\[]]\(https\://learn.microsoft.com/dotnet/api/system.char)): List of separators that indicate split points.

### Returns

| Type                                                                                                    | Description                          |
| ------------------------------------------------------------------------------------------------------- | ------------------------------------ |
| [IEnumerable\<string>](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1) | Returns list of tokens in lowercase. |

### Remarks

See SplitFileEntryComponents for more info.
