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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T06:43:25+00:00 2026-05-25T06:43:25+00:00

I need to break a long text string into smaller pieces approximately once every

  • 0

I need to break a long text string into smaller pieces approximately once every 500 characters (not a special character), forming an array of all the sentences and then put them together separated by a specific character (eg / /). Something as follows:

“This text is a very very large text.”

So, I get:

arrTxt(0) = "This is"
arrTxt(1) = "a very"
arrTxt(2) = "very large text"
...

And finally:

response.write arrTxt(0) & "//" & arrTxt(1) & "//" & arrTxt(2)...

Due to my limited knowledge of classic asp, the closest I came to a desired result was the following:

length = 200
strText = "This text is a very very large."
lines = ((Len (input) / length) - 1)
For i = 0 To (Len (lines) - 1)
txt = Left (input, (i * length)) & "/ /"
response.write txt
Next

However, this returns a repeated and overlapping text string: “this is / / this is a / / this is a text //…

Any idea with vbscript? Thank you!

  • 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-25T06:43:26+00:00Added an answer on May 25, 2026 at 6:43 am

    Here is a try:

    Dim strText as String
    Dim strTemp as String
    Dim arrText()
    Dim iSize as Integer
    Dim i as Integer
    
    strText = "This text is a very very large."
    iSize = Len(stText) / 500
    ReDim arrText(iSize)
    strTemp = strText
    
    For i from 0 to iSize - 1
      arrText(i) = Left(strTemp, 500)
      strTemp = Mid(strTemp, 501)
    Next i
    
    WScript.Echo Join(strTemp, "//")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to break apart a large collection of wav files into smaller segments,
I need to break apart a string that always looks like this: something --
For an iPhone ebook application I need to break arbitrarily long HTML documents up
I have to convert a long string of data into values so that I
I need to reformat a text file into a PDF. Using Perl, I am
Its prudent to break a long function into a chief function and helper functions.
Suppose I need to break out of three or four nested for loops at
Suppose you are calling a function, where there's clearly a need to break down
What I need to do is to break atom to tokens. E. g.: tokenize_string('Hello,
I need to pull out the content out of two paragraph tags and break

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.