# split

## Description

Breaks a single string into multiple smaller strings using a separator.

## Input / Parameter

| Name      | Description                             | Input Type  | Default | Options | Required |
| --------- | --------------------------------------- | ----------- | ------- | ------- | -------- |
| value     | The string to break into smaller parts. | String/Text | -       | -       | Yes      |
| separator | The separator to break the string by.   | String/Text | -       | -       | Yes      |

## Output

| Description                                               | Output Type |
| --------------------------------------------------------- | ----------- |
| Returns an array containing the multiple smaller strings. | Array/List  |

## Callback

N/A

## Video

Coming Soon.

## Example

The user wants to split the string.

### Step

1. Call the function.\
   value : CL\_JASON\_CODE\
   separator : \_

   ![](https://399701567-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FwmJ1RKjM2uNFaL6fO3Xu%2Fuploads%2Fgit-blob-1f2e547fdfb68c6c17ce4bc336baffcb5ee80c45%2Fsplit-step-1.png?alt=media) ![](https://399701567-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FwmJ1RKjM2uNFaL6fO3Xu%2Fuploads%2Fgit-blob-713591d5ec2da2cb0fb19cdbb3fbfd9f017c0d8a%2Fsplit-step-2.png?alt=media)

### Result

![](https://399701567-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FwmJ1RKjM2uNFaL6fO3Xu%2Fuploads%2Fgit-blob-96d55a71228cd34cf6b6faee02a7db18abc859bd%2Fsplit-result-1.png?alt=media)

## Links
