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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T20:16:55+00:00 2026-05-30T20:16:55+00:00

I would just like to ask, is there a way to possibly customize the

  • 0

I would just like to ask, is there a way to possibly customize the way you reverse strings in java? For example, this is my sample input:

The big blue bird is flying.

is there any way that I can reverse some parts of the string like for example, by 3?

So the output would be:

Theib g beul bi dris ylfing .

The string is reverse every after 3 characters. is this 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-30T20:16:57+00:00Added an answer on May 30, 2026 at 8:16 pm

    Methodology: Iterate over all the characters of your input string by a parameter (e.g. in your case param=3) Determine the parts to be reversed with the help of a boolean flag. If the partial substring is not to be reversed append it to the result, otherwise append its reverse to the result with the help of a StringBuilder object. Give this code a try, I hope it helps:

    public static String customizedReverse(String str, int param)
    {
        String result = "";
        boolean reverse = false;
        StringBuilder sb = null;
        int size = str.length(), i = 0;
    
        if(param > size)
            return str;
    
        for (i = 0; i < (size/param)*(param); i += param)
        {
            String temp = str.substring(i, i + param);
            if (!reverse)
                result += temp;
            else
            {
                sb = new StringBuilder(temp);
                result += sb.reverse();
            }
            reverse = !reverse;
        }
        // Appending the remaining part of the string       
        if (!reverse)
            result += str.substring(i, size);
        else
        {
            sb = new StringBuilder(str.substring(i, size));
            result += sb.reverse();
        }
    
        return result;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like copy just file.xml without folder structure using overlays like this: <overlays>
I would like to learn ASP.NET and just wanted some input as to which
I would like to know if there is a way to embed a cranvas
I don't think this is possible, but I'll ask anyway... Is there some way
I would like to ask about best practices or the simplest way possible of
I would just like your feedback on something. Basically I have a value called
I am new to coding and would just like to know a bit more
I am pretty sure I cannot, but I would just like to double check
I just would like to know if it is possible (and if yes how)
I have an std::vector<unsigned char> with binary data in. I just would like to

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.