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"

written by objects \\ tags:


Leave a Reply