Can anyone please suggest a way to replace back-slash ‘\’ with slash ‘/’ in a string. Basically the string is a path. I have tried using Replace() method of string, but its not working.
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’ll need to capture the result of the
Replace(strings are immutable), and ensure you use character-escaping for the\:For info; most of the inbuilt methods will accept either, and assuming you are on Windows,
\would be more common anyway. If you want a uri, then use aUri: