home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
kaffe-0.5p4-src.tgz
/
tar.out
/
contrib
/
kaffe
/
test
/
strings
/
Str.java
next >
Wrap
Text File
|
1996-09-28
|
180b
|
10 lines
class Str {
public static void main (String args[]) {
String str = "1234567890";
StringBuffer a = new StringBuffer(str);
a.insert(2, "abcd");
System.out.println(a);
}
}