[Solved] Printing out box of Hashtags(#) surrounding text
You can use System.out.printf: Let’s consider String str = “012345678901234567890123456789012345678”; add spaces before the string: System.out.printf(“%56s”, str); Output: ############################################################ # # # 012345678901234567890123456789012345678 # # # ############################################################ add spaces after the string: System.out.printf(“%-56s”, str); Output: ############################################################ # # # 012345678901234567890123456789012345678 # # # ############################################################ To be sure that the string is not too long, you … Read more