SplitCount

Returns the highest available Index that can be used using the Split function (Simple Version)

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

Syntax:

SELECT SQLHTTP.net.SplitCount ( @Text, @Delimiter )

Arguments:

Name Type Description
@Text nvarchar(MAX)

String expression containing substrings and delimiters. 

@Delimiter nvarchar(4000) String of characters used to identify substring limits.

Return Type:

int

Sample Usage:

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

See Also: