Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following sting xxxxx, I want to add a hyphen like x-xxxx, how can I do so using Java?

share|improve this question

5 Answers

up vote 10 down vote accepted

You can make use of String#substring().

String newstring = string.substring(0, 1) + "-" + string.substring(1);

You'll only need to check the string length beforehand to avoid IndexOutOfBoundsException, but that's nothing more than obvious.

share|improve this answer
4  
If you have a StringBuilder or StringBuffer you can also use insert: myStringBuilder.insert(1, '-'); – M. Jessup Apr 14 '10 at 11:47
+1 for pointing out the exception possibility. It wasn't obvious to me; my example does not handle the general case. – Iain Elder Apr 14 '10 at 12:24

Assuming

String in = "ABCDEF";
String out;

Then, any of:

out = in.replaceFirst(".", "$0-");

or

out = String.format("%1$s-%2$s", in.substring(0,1), in.substring(1));

or

out = in.substring(0,1) + "-" + in.substring(1);

or

out = new StringBuilder(in).insert(1, '-').toString();

will make out = "A-BCDEF".

share|improve this answer
Regular expressions and format specifiers? Your first two examples seem arcane to me! – Iain Elder Apr 14 '10 at 12:22
1  
@isme: I agree :-). I thought posting these different methods would be useful for more complex replacements though, to make readers aware of what possibilities there are. – JRL Apr 14 '10 at 12:24
OMG I didn't know you can refer to $0. Makes sense, of course, but I just never thought about it. Learned something new, +1! – polygenelubricants Apr 18 '10 at 9:12

String is an immutable type in Java, meaning that you can't change the character sequence it represents once the String is constructed.

You can use an instance of the StringBuilder class to create a new instance of String that represents some transformation of the original String. For example, add a hyphen, as you ask, you can do this:

String str = "xxxxx";
StringBuilder builder = new StringBuilder(str);
builder.insert(1, '-');
String hyphenated = builder.toString(); // "x-xxxx"

The StringBuilder initially contains a copy of the contents of str; that is, "xxxxx".

The call to insert changes the builder's contents to "x-xxxx".

Calling toString returns a new String containing a copy the contents of the string builder.

Because the String type is immutable, no manipulation of the StringBuilder's contents will ever change the contents of str or hyphenated.

You can change what String instance str refers to by doing

str = builder.toString();

instead of

String hyphenated = builder.toString();

But never has the contents of a string that str refers to changed, because this is not possible. Instead, str used to refer to a instance containing "xxxxx", and now refers to a instance containing "x-xxxx".

share|improve this answer
String xxx = "xxxxx";
String hyphened = xxx.substring(0,1) + "-" + xxx.substring(1);
share|improve this answer

You can do:

String orgStr = "xxxxx";
String newStr = orgStr.substring(0,1) + "-" + orgStr.substring(1)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.