trimming strings

R

RobcPettit

Hi, I have " 'anyword' ", and i want to trim out the '. Ive tried
using:
string test = " 'anyword' ".
char[] DeleteChars = { ''' };
string id = test.Trim(DeleteChars) and string id = test.Trim(''') .
These didnt work. Any ideas please.
Regards Robert
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top