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 778785
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T19:49:17+00:00 2026-05-14T19:49:17+00:00

I am trying to break a large string of text into several smaller strings

  • 0

I am trying to break a large string of text into several smaller strings of text and define each smaller text strings max length to be different. for example:

"The quick brown fox jumped over the red fence.
       The blue dog dug under the fence."

I would like to have code that can split this into smaller lines and have the first line have a max of 5 characters, the second line have a max of 11, and rest have a max of 20, resulting in this:

Line 1: The 
Line 2: quick brown
Line 3: fox jumped over the 
Line 4: red fence.
Line 5:        The blue dog 
Line 6: dug under the fence.

All this in C# or MSSQL, is it possible?

  • 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-14T19:49:18+00:00Added an answer on May 14, 2026 at 7:49 pm
    public List<String> SplitString(String text, int [] lengths)
    {
       List<String> output = new List<String>();
    
       List<String> words = Split(text);
    
       int i = 0;
       int lineNum = 0;
       string s = string.empty;
       while(i<words.Length)
       {
           if(s.Length+words[i].Length <lengths[lineNum])
           {
                s+=words[i];
                i++;
                if(lineNum<lengths.Length-1)
                     lineNum++;
           }
           else
           {
              output.Add(s);
              s=String.Empty;
           }
    
       }
    
        s.Remove(S.length-1,1);// deletes last extra space.
    
        return output;
    }
    
    
       public static List<string> Split(string text)
        {
            List<string> result = new List<string>();
            StringBuilder sb = new StringBuilder();
    
            foreach (var letter in text)
            {
                if (letter != ' ' && letter != '\t' && letter != '\n')
                {
                    sb.Append(letter);
                }
                else
                {
                    if (sb.Length > 0)
                    {
    
                        result.Add(sb.ToString());
                    }
    
                    result.Add(letter.ToString());
                    sb = new StringBuilder();
                }
            }
    
            return result;
        }
    

    This is untested/compiled code, but you should get the idea.

    I also think you should use a StringBuilder instead, but I didn’t remember how to use it.

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

Sidebar

Related Questions

I've never done this before, but basically I'm trying to break a large string
I am trying to split up a large xml file into smaller chunks. I
I have a large table that I'm trying to break up. For example I
I'm trying to break up a square or rectangle into a large number of
I am trying to break a huge SQL file into little sql file and
I'm trying to find a way to break a string at the second last
We are trying to read each word from a text file and replace it
I'm iterating over a very large set of strings, which iterates over a smaller
Hi I am trying to show a large amount of static text within the
I'm trying to work out how I can break up a large block of

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.