How can I insert symbol ‘+’ after each char of a string?
Like changing from mystring to m+y+s+t+r+i+n+g+.
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 also use this:
To add one extra
+after, just concatenate. "+".Note: this approach is fast enough for not very long strings. Another way is to use regular expressions as illustrated in @zerkms answer.