Pls help me write a function in c#, to exclude all the dots(.) from a string.
Like the string "123.0000" should return "1230000"
Thanks a ton.
Printable View
Pls help me write a function in c#, to exclude all the dots(.) from a string.
Like the string "123.0000" should return "1230000"
Thanks a ton.
Use the Replace function or regular expressions
Thanks...