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

i am having String its value

String Test = '72;

now i want remove the single quote

the out put should be Test = 72


Please suggest me
Posted
Comments
Member 10453691 28-Aug-14 3:29am    
Test=Replace.Test(''','')

1 solution

Try to use
string a=Test.replace("'","");
 
Share this answer
 
Comments
murkalkiran 28-Aug-14 3:31am    
Thank u Sir

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