I’ve a String with Length = 100;
I need to center the text “Hello”, in that string using whitespaces.
How can i do ?
thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the string padding methods and a little match to calcualte the center position:
And you can move this logic into an extension method:
And you can use it like
Demo .NETFiddle.