Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6847409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:44:28+00:00 2026-05-27T00:44:28+00:00

How to split the comma separated string with out using loop fo example:- I

  • 0

How to split the comma separated string with out using loop

fo example:-

I have the string which has commma separated like 4,3,5,2,5,9

if i like to get the string after 3rd comma without using loop.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T00:44:29+00:00Added an answer on May 27, 2026 at 12:44 am
    DECLARE @str varchar(MAX)='001,002,03,0004,05,6,07'
        ,@separator char(1)=','
        ,@n int = 3;
    
    WITH str_nums ( id, n1, n2 ) 
    AS 
    ( 
    SELECT CAST(1 as int) as id, CAST(0 as bigint) as n1, CHARINDEX(@separator, @str+@separator) as n2
    UNION ALL
    SELECT id + 1, n2 as n1, CHARINDEX(@separator, @str+@separator, n2+1) as n2
    FROM str_nums
    WHERE n2<len(@str)
    ) 
    
    SELECT SUBSTRING(@str, n1+1, n2-n1-1) as n_str
    FROM str_nums
    WHERE id = @n
    GO
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How to split a comma separated string and process in a loop using JavaScript?
I have a comma separated string, out of which I need to create a
I have a comma separated string. I split that string and assigned it to
So I have comma-separated string like 1,5,7 , so what's the most simple and
I have a comma separated string which specifies the indexes. Then I have one
I have implemented a function TraverseStringClockwise which takes a comma separated string of integers,
I have a comma-separated string that I want to convert into an array, so
User inputs a comma separated string and i d like to make a an
I am using the following to convert comma separated string to list. string productId
I am trying to convert a comma separated string into an array using the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.