Thread
:
How can i insert a char into a string
View Single Post
#
2
(
permalink
)
05-20-2007, 11:00 PM
levent
Senior Member
Join Date: Dec 2006
Posts: 748
You can use
StringBuffer
to do this:
Code:
String st = new String("abcde"); st = StringBuffer(st).insert(2, "C").toString();
levent
View Public Profile
Send a private message to levent
Find all posts by levent