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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T06:06:28+00:00 2026-06-17T06:06:28+00:00

Considering the following string, I would like to get a substring in that way:

  • 0

Considering the following string, I would like to get a substring in that way:

String str="abcdefghij"

Substring returned:

 acegi 

that is to say every two chars of the first string str.
Then with the same reasoning, getting a substring of every three chars of the first string str.

And the same question with a frequency of f

This is my current method but actually there is an error:

 private static String subString(String str,int freq){
        String subStr=null;

        for(int i = 0; i < str.length(); freq++){
          subStr= subStr + str[i];
        }
     return subStr;
 }

Also maybe there is some already existing method for these tasks?

  • 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-17T06:06:29+00:00Added an answer on June 17, 2026 at 6:06 am

    I don’t know of a built-in method to do it. You could use a StringBuilder to avoid creating many temporary strings, and initialise it with the right capacity:

    private static String subString(String str, int freq) {
        //make it the right capacity to avoid reallocations
        StringBuilder subStr = new StringBuilder(str.length() / freq + 1);
    
        for (int i = 0; i < str.length(); i += freq) {
            subStr.append(str.charAt(i));
        }
        return subStr.toString();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Considering following code public class A { public static void main(String[] args) { new
Considering that simple java code which would not work: public class Bar extends AbstractBar{
I have a code file that has some #ifdefs I would like removed in
I get this warning. I would like defined behavior but i would like to
Considering the following string: String s = /static/201105-3805-somerandom/images/optional-folder/filename.gif; How can I remove the static/201105-3805-somerandom/
I'm considering one selection statement that would target one of many css class names
considering the following function private static void GetText(String nodeValue) throws IOException { if(!file3.exists()) {
Considering the following model: USER Long: PK String: firstName String: lastName USER_EXT Long: PK
Considering the following struct : struct S { public string s; } What is
Considering the following TSQL: INSERT INTO Address(Street1, City, State, ZipCode) SELECT Street1, City, StateCode,

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.