the default delimiter is comma and the default list type is sysname.
You can pass whatever delimiter you want and ask for any datatype list.
Here is a sample of its use:
EXEC Usp_GetTableList @strDataSet='01/24/1965,1900-01-01 23:15:00.000,03/21/2009,1965,03/02/1975'
,@Rt='DATETIME'
EXEC Usp_GetTableList @strDataSet='$45,50.639,60.1965,123456.9'
,@Rt='MONEY'
--,@delimiter ='.'
EXEC Usp_GetTableList @strDataSet='45,50.639,60.19651234569'
,@Rt='NUMERIC(10,6)'
Enjoy it !