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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T21:43:42+00:00 2026-06-11T21:43:42+00:00

I am pretty new to Java and I have a little problem with formatting

  • 0

I am pretty new to Java and I have a little problem with formatting a String. I have add “\n” for a new line after every 18th char and I have to split these new lines into array indexes, 13 lines for each index.

My code so far:

String[] strings = str.split("\n");
String result;
for (int i = 1; i < strings.length; i++) {
    i++;
    if ((i % 13) == 0) {
        result += strings[i];
    } else {
        result += strings[i] + "\n";
    }
}

It doesn’t work as it should, I tested a bit around bit I don’t know how to do this, could someone help me please?

  • 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-11T21:43:43+00:00Added an answer on June 11, 2026 at 9:43 pm

    You’re incrementing i twice in each loop – once in the increment expression of the for statement, and once inside the loop itself. This means i is always even, so i % 13 is probably not 0 when you expect it to be. In addition, the first index of an array is 0, so you would currently ignore the first element. As a more minor point, I would advise using a StringBuilder instead of appending Strings:

    String[] strings = str.split("\n");
    StringBuilder resultBuilder = new StringBuilder();
    for (int i = 0; i < strings.length; i++) {
        String s = strings[i];
        if ((i % 13) == 0) {
            resultBuilder.append(s);
        } else {
            resultBuilder.append(s).append("\n");
        }
    }
    String result = resultBuilder.toString();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm pretty new to Java, let's say I have a String containing multiple things
Pretty new with java/eclipse. Problem: I have two packages in one android project. I
I am pretty new to the whole Java and OSGi world and I have
I am completely new to android, and pretty much a Java newb. I have
I'm pretty new to java and I've got a problem that I couldn't solve
I'm pretty new to Java and SWT, hoping to have one image dissolve into
Let me preface this by saying that I'm pretty new to Java. I have
I'm pretty new to java and really enjoying learning about it. I have made
I'm pretty new to Java and this has me really confused. I have two
I am pretty new to Java and the project I have requires a new

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.