| Author |
quick question about combining variables
|
Ilja Smoli
Ranch Hand
Joined: Dec 02, 2001
Posts: 64
|
|
Code: String a = "123"; String b = "lala"; String c = a .b ; ??? I need that "c" output will be "123lala" How? thx in advance.. [ January 22, 2002: Message edited by: Ilja Smoli ]
|
 |
Roy Ben Ami
Ranch Hand
Joined: Jan 13, 2002
Posts: 732
|
|
this relates somehow to JSP??? use the concat method! String c=a.concat(b);
|
 |
 |
|
|
subject: quick question about combining variables
|
|
|