|
Oct
08
|
You can simply use the overloaded + operator to concatenate “0″ and your string.
String s = "abc" s = "0" + s; // s is now "0abc"
|
|
You can simply use the overloaded + operator to concatenate “0″ and your string. String s = "abc" s = "0" + s; // s is now "0abc" Leave a Reply |
|
Recent Comments