Click here to Skip to main content
Sign Up to vote bad
good
I want to split a string 123test$%^ into different parts based on their type. Can any one help me.
Posted 13 Dec '12 - 22:34

Comments
OriginalGriff - 14 Dec '12 - 4:36
This is not a good question - we cannot work out from that little what you are trying to do. Remember that we can't see your screen, access your HDD, or read your mind. Use the "Improve question" widget to edit your question and provide better information.

2 solutions

Try SUBSTRING or RIGHT or LEFT; just check out the STRING functions for starters
 
DECLARE @frastr [nvarchar](128), @dmyndlstr[nvarchar](128), @nfrnchsint [int], @dracint [int]
SET @frastr = '123Test$%^'
SET @dmyndlstr = ''
SET @nfrnchsint = LEN(@frastr)
SET @dracint = 0
 
WHILE @dracint < @nfrnchsint + 1
    BEGIN
       SET @dmyndlstr = SUBSTRING(@frastr,0,@nfrnchsint + 1)
		PRINT @dmyndlstr
		SET @nfrnchsint = @nfrnchsint -1
	END
Or another SUBSTRING
DECLARE @frastr [nvarchar](128), @dmyndlstr[nvarchar](128), @nfrnchsint [int], @dracint [int]
SET @frastr = '123Test$%^'
SET @dmyndlstr = ''
SET @nfrnchsint = LEN(@frastr)
SET @dracint = 0
 
WHILE @dracint < @nfrnchsint + 2
    BEGIN
       SET @dmyndlstr = SUBSTRING(@frastr,0,LEN(@frastr)-@nfrnchsint)
		PRINT @dmyndlstr
		SET @nfrnchsint = @nfrnchsint -1
	END	
Or a LEFT and a RIGHT
DECLARE @frastr [nvarchar](128), @dmyndlstr[nvarchar](128), @nfrnchsint [int], @dracint [int]
SET @frastr = '123Test$%^'
SET @dmyndlstr = ''
SET @nfrnchsint = LEN(@frastr)
SET @dracint = 0
 
WHILE @dracint < @nfrnchsint
    BEGIN
       SET @dmyndlstr = LEFT(@frastr,1)
		PRINT @dmyndlstr
		SET @frastr = RIGHT(@frastr,@nfrnchsint-1)
		SET @nfrnchsint = @nfrnchsint -1
	END	
 
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 364
1 Arun Vasu 223
2 OriginalGriff 190
3 CPallini 163
4 Aarti Meswania 158
0 Sergey Alexandrovich Kryukov 10,169
1 OriginalGriff 7,749
2 CPallini 4,181
3 Rohan Leuva 3,482
4 Maciej Los 3,089


Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 14 Dec 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid