This script returns the n-th item in a delimited list.
Example Usage:
declare @mylist nvarchar(100)
set @mylist = 'A,B, C, D , 1, 2,345, EFG, H,'
select dbo.fn_ListGetAt(@mylist, 8, ',')
Returns the 8th value in the comma-delimited list specified above -- "EFG"
This script is part of a series of list-scripts:
"fn_ListAppend"
"fn_ListCount"
"fn_ListGetAt"
"fn_ListPrepend"