1
I have a variable (TEXT) that is a string, where its value is: "22/06/2018 00:00:00" How to make an Replace by removing its quotes?
1
I have a variable (TEXT) that is a string, where its value is: "22/06/2018 00:00:00" How to make an Replace by removing its quotes?
1
Using String.Replace. follows an example: http://rextester.com/ZPYKJ63622
public static void Main(string[] args)
{
var x = @"""22/06/2018 00:00:00""";
var y = x.Replace("\"", " ");
Console.WriteLine(y);
}
Perfect! Obg...
Browser other questions tagged c# string replace
You are not signed in. Login or sign up in order to post.
These quotes you are selling in debug or in your bank are just like that?
– Netinho Santos
@Netinhosantos.. Sorry, saving in my bank!!
– Bruno Souza