Replacing quotation mark?
If you need help with a project or need to know how to do something specific in VB.NET then please ask your questions in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
3 posts
Page 1 of 1
Hi Guys
I have been working a little bit on offBeat and have run into a little issue i cant seem to replace
– with — in a string, any help would be appreciated.
Here's my code:
I have been working a little bit on offBeat and have run into a little issue i cant seem to replace
– with — in a string, any help would be appreciated.
Here's my code:
Code: Select all
Thanks Smiley cooll;st = st.Replace("â€""", "—")
#Smiley
not sure but this can maybe the result
i can't test it i don't have vs open

not sure but this can maybe the result
i can't test it i don't have vs open

Code: Select all
hope this works 'st = st.Replace("â€""", "—")
st = st.Replace(Chr(226) & Chr(8364), Chr(8212))
'or
st = st.Replace("â" & "€", "—")

visit us on:
http://www.softpedia.com/get/System/Lau ... -Run.shtml
Check it out ! http://www.softpedia.com/publisher/I-A- ... 90017.html
Check it out ! http://www.softpedia.com/get/Desktop-En ... lock.shtml
http://www.softpedia.com/get/System/Lau ... -Run.shtml
Check it out ! http://www.softpedia.com/publisher/I-A- ... 90017.html
Check it out ! http://www.softpedia.com/get/Desktop-En ... lock.shtml
3 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023