I want to make strings like "a b c" to "prefix_a prefix_b prefix_c"
how to do that in java?
|
|
|
You can use the String method: replaceAll(String regex,String replacement)
You may need to tweek the regexp to meet your exact requirements. |
||||
|
Assuming a split character of a space (
Output:
Using a
The only catch with the first sample is that there will be an extraneous space at the end of the last token. |
||||
|
hope I'm not mis-reading the question. Are you just looking for straight up concatenation?
would show you
|
|||
|
|
You can use StringTokenizer to enumerate over your string, with a "space" delimiter, and in your loop you can add your prefix onto the current element in your enumeration. Bottom line: See StringTokenizer in the javadocs. You could also do it with regex and a word boundary ("\b"), but this seems brittle. Another possibility is using String.split to convert your string into an array of strings, and then loop over your array of "a", "b", and "c" and prefix your array elements with the prefix of your choice. |
|||
|
|
|
You can split a string using regular expressions and put it back together with a loop over the resulting array:
|
|||
|
|
|
This is C# but should easily translate to Java (but it's not a very smart solution).
UPDATE The first solution has no spaces in the output. This solution requires a place holder symbol (#) not occuring in the input.
It's probably more efficient to use a
|
||||
|
|