After extracting a piece of text in my application, I might end up with a string like this:
"More kitchen supplies for the people"
Which in plain text would be:
"More kitchen supplies for the people"
Is there a component/method in .NET I can use to "process" the string into its plain text equivalent?
I'm able to assume regular ascii text in general, no odd unicode or strange alphabets. It just seems that normal signs like ', ", | etc. are provided as character codes.
EDIT: I think I should note that this is about .NET for Windows desktop development. Appearantly there are methods to do this for ASP.NET only, and I didn't realize that simple operations like this could be limited to specific .NET platforms.