# Set splitter

> Defines the character used to split arrays returned by the SDK.

Source: https://docs.capaone.com/capainstaller/sdk-capainstaller-software-development-kit-functions/container-functions/set-splitter/  
Product: CapaInstaller — a separate CapaSystems product; do not apply this page to any other.

## Description

Defines the array split character.

## Syntax

SetSplitter(Byval Splitter as String) as Boolean

## Parameters

*Splitter (String)*

*Character to be used when the array is returned.*

## Return value

Boolean. Returns true if the character is set. Otherwise false.

## Example

**VBScript**

```vb
Dim oCMS 
Dim x 
  
Set oCMS = CreateObject("CapaInstaller.SDK") 
x=oCMS.SetSplitter (",") 
```
