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"
Leave a Reply
You must be logged in to post a comment.
CategoriesArchives
|
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 ReplyYou must be logged in to post a comment. |
|