I wanna add space in string( string from array) after 2 characters, for example:
1234567890 should be 12 34 56 78 90, any suggestions how to do that?
I wanna add space in string( string from array) after 2 characters, for example:
Share
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 would probably have to do a loop as such:
This could be heavy on string usage, so make sure you read up on effective string concatenation