icampbell
Right there with Babe
Points: 770
More actions
August 2, 2010 at 4:16 am
#238305
:cool:i have a sequence of numbers beginning 00000001/01
and want to remove the / in the sequence.
Is there an easier way to do this other than concatinate two substring statements.
Thanks,
iain.
Cadavre
SSC-Forever
Points: 41690
August 2, 2010 at 4:19 am
#1200902
DECLARE @STRING AS VARCHAR(8000)
SET @STRING = '00000001/01'
SET @STRING = REPLACE(@STRING, '/', '')
PRINT @STRING
??
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply