[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-26 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eSPLIT\u003c/code\u003e function divides a string into an array of substrings using a specified delimiter.\u003c/p\u003e\n"],["\u003cp\u003eThe function's input is a string and the delimiter, which can be any character or sequence of characters, resulting in a string array output.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eSPLIT\u003c/code\u003e function supports the string data type.\u003c/p\u003e\n"],["\u003cp\u003eThe provided examples illustrate how to split strings by both spaces and comma delimiters.\u003c/p\u003e\n"]]],[],null,["# SPLIT function\n\nSee the [supported connectors](/integration-connectors/docs/connector-reference-overview) for Application Integration.\n\nSPLIT function\n==============\n\n`SPLIT` function\n----------------\n\nSupported data type\n-------------------\n\n\nThe `SPLIT` function supports the following data type:\n\n- String\n\nExample 1: Split a string based on the space character\n------------------------------------------------------\n\n\n**Sample data** : `$var1$ = \"Hello Apigee Integrations\"`\n\n\n**Usage** : `$var1$.SPLIT(\" \") `\nSplit var1 based on the space character.\n\n\n**Output** : `{\"Hello\",\"Apigee\",\"Integrations\"}`\n\nExample 2: Split a string based on the comma character\n------------------------------------------------------\n\n\n**Sample data** : `$var1$ = \"Test,Integrations\"`\n\n\n**Usage** : `$var1$.SPLIT(\",\")`\nSplit var1 based on the comma character.\n\n\n**Output** : `{\"Test\",\"Integrations\"}`\n\nRecommendation\n--------------\n\n- Learn how to add and configure a [Data Mapping task](/application-integration/docs/configure-data-mapping-task)"]]