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

  • Home
  • SEARCH
  • 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 8563557
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T16:59:12+00:00 2026-06-11T16:59:12+00:00

i want to pick the integer combinations using a single integer, like I have

  • 0

i want to pick the integer combinations using a single integer,
like I have a number 1234.. Now what i want is: 1,2,3,4,12,23,34,123,234,1234

Kindly help..??

  • 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-06-11T16:59:13+00:00Added an answer on June 11, 2026 at 4:59 pm

    If I understood you right, you want all substrings of a given string (in this case the number 1234). So, for a string of length n there are n substrings of length 1, n − 1 substrings of length 2, etc. until one substring of length n.

    Given that you can easily solve this with two nested loops, e.g.:

    public static IEnumerable<int> Foo(int x) {
      string s = x.ToString();
      for (int length = 1; length <= s.Length; length++) {
        for (int i = 0; i + length < s.Length; i++) {
          yield return int.Parse(s.Substring(i, length));
        }
      }
    }
    

    (Untested and there are likely fencepost errors, but you get the idea.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string of binary data and want to pick a single character,
Lets say I have an array of length n and I want to pick
want to know why String behaves like value type while using ==. String s1
I have a MySQL table and I want to pick certain columns to create
i want to pick a contact with it's number from my contacts list. i
I want to pick a random number and express that number in the format
I have multiple instances of a div .gallery and I want to pick up
my date format is like 2010-11-15 04:28:31 i want to pick just 2010-11-15 instead
A=matrix(0,4,2) A[1,1]=2 A[1,2]=3 A[2,1]=2 A[2,2]=3 A[3,1]=2 A[3,2]=3 A[4,1]=2 A[4,2]=3 Now I want to pick
I want to pick and SUM values since last wednesday until NOW() in mysql.

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.