removing characters
C#
3
Posts
3
Posters
0
Views
1
Watching
-
hi experts i have a string let say string dummy="hello" i want to remove 'h' and 'e' from this string and want to show a remaining string "llo" on the messagebox. waiting for reply
string dummy = "Hello"; dummy = dummy.Replace("H", ""); dummy = dummy.Replace("e", ""); MessageBox.Show(dummy); Forever Developing
-
hi experts i have a string let say string dummy="hello" i want to remove 'h' and 'e' from this string and want to show a remaining string "llo" on the messagebox. waiting for reply