Microsoft
Software
Hardware
Network
Question : C# Replace Statement
In the code below, how would I replace all double quote marks in the field with nothing?
basically removing ANY " in the string?
string strDescription = "";
strDescription = row["CompleteDescription"]
.ToString(
);
Answer : C# Replace Statement
1:
strDescription = row["CompleteDescription"].ToString().Replace("\"", string.Empty);
Open in New Window
Select All
Random Solutions
Weird multi-user Access performance problem
excel remove chars
Is Access a bit of a pig?
Excel sheet renumbering
Get Columnname of a matched value
MS Power Point 2007 stops runing
Excel 2003 is looking for pro11.msi, where can i find it and why is it needed all of a sudden?
EBS 2008 Server Problem
How to determine why my MFC application requires Microsoft Office dlls to run ??????
How to createa a checkbox datatype column in a table in VBA code