//Sample_format_08.java class Sample_format_08{ public static void main(String[] args){ String str1; str1 = String.format("[%10s]", "456"); System.out.println(str1); str1 = str1.replace(' ','0'); System.out.println(str1); } }