Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
545
WebHTMLEditor.TextXhtml
posted

The output from this is including a bunch of " " characters for spaces and they aren't translating very well when I go to store the information in a database, they are being turned into "ᙦ" in the database. Do I need to use a special encoding or something that I'm missing?

Parents
  • 545
    Verified Answer
    posted

    I fixed this by checking to see if the string contained either " " or "ᙦ" ad replacing it with and empty string if it did. The built in "contains" and "replace" methods on the string object worked perfectly for this. Although i would like to be able to avoid it all together but thats why the term work around exists...

Reply Children