Answer by dvroman
I wrote this for a much simpler extraction, but the idea should work. /***************************************************************** **** Parse A Delimited String Into A Table...
View ArticleAnswer by Kev Riley
whilst we wait for clarification on the question, here's my take on it.... I would use a [Tally table](http://www.sqlservercentral.com/articles/T-SQL/62867/) to 'loop' and split the string. I've...
View ArticleAnswer by Pavel Pawlowski
Another solution for this could be a CLR and RegEx if you are using SQL Server 2005 and above. I tried to create a simple class for CLR Regex. It takes a source string and regex expression. It then...
View ArticleAnswer by Jeff Moden
Please see the following URL for 1) why you should never use a While Loop for such a thing and 2) my response to Oleg's good post which basically shows why you shouldn't use XML for such things,...
View ArticleAnswer by Jeff Moden
Heh... ok... since someone brought it up, how do you see who upvoted or downvoted a post? It's always an interesting thing to find out. Thanks folks.
View ArticleAnswer by dvroman
I wrote this for a much simpler extraction, but the idea should work. /***************************************************************** **** Parse A Delimited String Into A Table...
View ArticleAnswer by Kev Riley
whilst we wait for clarification on the question, here's my take on it.... I would use a [Tally table](http://www.sqlservercentral.com/articles/T-SQL/62867/) to 'loop' and split the string. I've...
View ArticleAnswer by Pavel Pawlowski
Another solution for this could be a CLR and RegEx if you are using SQL Server 2005 and above. I tried to create a simple class for CLR Regex. It takes a source string and regex expression. It then...
View ArticleAnswer by Jeff Moden
Please see the following URL for 1) why you should never use a While Loop for such a thing and 2) my response to Oleg's good post which basically shows why you shouldn't use XML for such things,...
View ArticleAnswer by Jeff Moden
Heh... ok... since someone brought it up, how do you see who upvoted or downvoted a post? It's always an interesting thing to find out. Thanks folks.
View Article