Viewing 3 posts - 1 through 3 (of 3 total)
If you are using SQL Server 2005 you could create a CLR stored procedure to perform RegExMatch and only match [0-9]+.
July 27, 2006 at 7:44 pm
#652057
The code that I posted is essentially the split function, so you could just include that in your query if you cannot create stored procedures or functions. You could also...
July 23, 2006 at 11:00 am
#650945
You could perform the split yourself, something like the following...
declare
@input varchar(1000)
set
@input
July 21, 2006 at 6:03 pm
#650887