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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T14:25:58+00:00 2026-06-07T14:25:58+00:00

Is there a way to transform the String m1, m2, m3 to the following

  • 0

Is there a way to transform the String

"m1, m2, m3"

to the following

"m1/build, m2/build, m3/build"

only by using String.replaceAll(regex, replacement) method?

So far this is my best attempt:

System.out.println("m1, m2, m3".replaceAll("([^,]*)", "$1/build"));
>>> m1/build/build, m2/build/build, m3/build/build

As you can see the output is incorrect. However, using the same regexp in Linux’s sed command gives correct output:

echo 'm1, m2, m3' | sed -e 's%\([^,]*\)%\1/build%g'
>>> m1/build, m2/build, m3/build
  • 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-07T14:26:00+00:00Added an answer on June 7, 2026 at 2:26 pm

    ([^,]*) can match the empty string, it can even match between two spaces. Try ([^,]+) or (\w+).

    Another minor note – you can use $0 to refer to the whole matched string, avoiding the captured group:

    System.out.println("m1, m2, m3".replaceAll("\\w+", "$0/build"));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a easy way to transform 1000000 in 1.000.000? A regex or string
Using only grep and sed, is there a way I can tranform the output
I am wondering if there is a way to transform a matrix of 2
Is there a way to compute efficiently the Fourier transform of the max of
Is there a way to disable the affect of CSS like text-transform on text
Is there way to automatically maximize the output window on hitting build and then
Is there a way to transform a base class into its derived class? Here
I'm looking for an elegant way to transform an std::string from something like: std::string
In other words, is there a faster, more concise way of writing the following
This question is raised by the following code: DateFormat DF = new SimpleDateFormat(yyyyMMdd); String

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.