# SplitCamelCase(string)

> Tokenize a string each capital letter.

## Definition

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

```csharp
public static string[] SplitCamelCase(string source)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): Word to split according to camelCase.

### Returns

| Type                                                               | Description        |
| ------------------------------------------------------------------ | ------------------ |
| [string\[\]](https://learn.microsoft.com/dotnet/api/system.string) | Camel case tokens. |
