Click here to Skip to main content
15,886,518 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi frnz,

i have one string like this ("c#.nwt,"asp.net","vb.net") like this i want to eliminate " from this string ,like this (c#.net,asp.net,vb.net) like this
Posted

1 solution

Try:
C#
string inp = "\"c#.nwt,\"asp.net\",\"vb.net\"";
string outp = inp.Replace("\"", "");
 
Share this answer
 
Comments
AmitGajjar 10-Dec-12 3:07am    
5+

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900