# Split

| type   | returns         |
| ------ | --------------- |
| Method | `array<string>` |

## Arguments

| name      | type   | description             |                              |
| --------- | ------ | ----------------------- | ---------------------------- |
| seperator | string | regex, default: `/\s+/` | The seperator the split upon |

## Explanation

Returns the string split upon the given seperator as a string array. If the argument is a regex, the string will be split where the regex matches.

## Examples

```swift
"hello world".split(" ") == ["hello", "world"]
"hello    world".split() == ["hello", "world"]
"Hello, World".split(/[^A-Za-z]/) == ["Hello", "World"]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.cheddar.vihan.org/docs/standard-library/string/split.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
