Skip to main content

Split a string with specified characters

Splits a given string with specified characters.

URL

https://api.excelapi.org/language/textsplit

Configuration

ConfigurationRequiredDescription
textSpecify the string to be split
delimiterSpecify the character to be split
lineSpecifies how many strings to return after splitting, which must be a number greater than or equal to 1.

Example

sample

B2 (Auto-fill to right side):

=WEBSERVICE("https://api.excelapi.org/language/textsplit?text="&ENCODEURL($A2)&"&delimiter="&ENCODEURL(",")&"&line="&B$1)

B3 (Auto-fill to right side):

=WEBSERVICE("https://api.excelapi.org/language/textsplit?text="&ENCODEURL($A3)&"&delimiter="&ENCODEURL("-")&"&line="&B$1)

B4 (Auto-fill to right side):

=WEBSERVICE("https://api.excelapi.org/language/textsplit?text="&ENCODEURL($A4)&"&delimiter="&ENCODEURL(" ")&"&line="&B$1)
tip

If you can use TEXTSPLIT function,it is recommended to use it.
This function is intended for use with version plans that cannot use the TEXTSPLIT function.