I want to remove all the space char in my string. For example my string is “Hello World”, The output that i want is “HelloWorld”
When I use this code:
str.Replace(Chr(39), "")
The output is : “Hello World”
There is a remaining space
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 Simply need to use: String.Replace
And for removing the leading/trailing spaces: String.Trim
The Output:
HelloWorld