Question : asp.net Need to know how to remove an UnderScore from a Sring Value

I have a string value of 58_1 as an example
how do i remove the underscore?

Answer : asp.net Need to know how to remove an UnderScore from a Sring Value

string s = "58_1";
Response.Write(s.Replace("_",""));
Random Solutions  
 
programming4us programming4us