Answers for "remove '/' from string c#"

C#
3

remove character from string C#

// our string
string myString = "[email protected]";

// lets remove the @ symbol
// here we replace our "@" in our string to an empty string 
string newString = myString.Replace("@", string.empty);
 
Console.Writeline(newString);
// output should look like this: testgmail.com
Posted by: Guest on August-17-2021
0

remove substring from string c#

string hello = "Hello Word";
string result = hello.Replace("lo Wo","");
Posted by: Guest on August-11-2021

Code answers related to "remove '/' from string c#"

C# Answers by Framework

Browse Popular Code Answers by Language