May 13, 2009 at 4:44 am
hi
replace perticular position char.
ex:
'234$123,N,N'
replace that first 'N' with 'V'
Than'Q
May 13, 2009 at 4:50 am
is the query gonna always replace the first 'N' in your string with V or is your query gonna always replace the 9th position with V or will it always replace the first alpha charater with V?
Thanks
Chris
----------------------------------------------
Try to learn something about everything and everything about something. - Thomas Henry Huxley
:w00t:
Posting Best Practices[/url]
Numbers / Tally Tables[/url]
May 13, 2009 at 4:55 am
here are all 3 example:
DECLARE @String VARCHAR(100)
SET @String = '234$123,N,N'
SELECT STUFF(@String,CHARINDEX('N',@String),1,'V') as [Replace 1st N]
SELECT STUFF(@String,9,1,'V') as [Replace 9th Char]
SELECT STUFF(@String,PATINDEX('%[A-Z]%',@String),1,'V') as [Replace 1st Alpa char]
----------------------------------------------
Try to learn something about everything and everything about something. - Thomas Henry Huxley
:w00t:
Posting Best Practices[/url]
Numbers / Tally Tables[/url]
May 13, 2009 at 4:55 am
not always 9th position,the position will change.but from the back side of the string it is in fixed position.
May 13, 2009 at 4:58 am
try this one:
SELECT STUFF(@String,(LEN(@String)-2),1,'V')
Or
SELECT REVERSE(STUFF(REVERSE(@String),3,1,'V'))
----------------------------------------------
Try to learn something about everything and everything about something. - Thomas Henry Huxley
:w00t:
Posting Best Practices[/url]
Numbers / Tally Tables[/url]
May 13, 2009 at 5:01 am
k fine .
Than'Q
May 13, 2009 at 5:02 am
make sure you understand the code incase the business rules change.
the last post of mine will always replace the 3rd last char...
----------------------------------------------
Try to learn something about everything and everything about something. - Thomas Henry Huxley
:w00t:
Posting Best Practices[/url]
Numbers / Tally Tables[/url]
May 13, 2009 at 5:07 am
Here is another way to do it, here it replaces the 2nd element from a delimted text with user defined fixed value...
; WITH TestData
AS
(
SELECT'234$123,N,N' AS SomeString
UNION ALL
SELECT'1545234$12,ZU,N' AS SomeString
UNION ALL
SELECT'1$2,ZU,NBCX' AS SomeString
)
SELECTSTUFF( SomeString, CHARINDEX( ',', SomeString ) + 1, CHARINDEX( ',', SomeString, CHARINDEX( ',', SomeString ) + 1 ) - CHARINDEX( ',', SomeString ) - 1, 'V' )
FROMTestData
--Ramesh
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply