Split

Splits a string into one or more substrings (Simple Version)

  • Free Function
  • SQL Server Compatibility: 2008, 2012, 2014, 2016, 2017

Syntax:

SELECT SQLHTTP.net.Split ( @Text, @Delimiter, @Index )

Arguments:

Name Type Description
@Text nvarchar(MAX)

String expression containing substrings and delimiters. 

@Delimiter nvarchar(4000)

String of characters used to identify substring limits. 

@Index bigint Integer value specifying the location of a substring.

Return Type:

nvarchar(MAX)

Sample Usage:

Simple split by a space character:
Simple split by a two-character delimiter:

See Also: