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
How to close excel file from Macro?
win7 most recent documents
Before Update Event in Combo Box Cancel event
Adding more rules to outlook - third part or outlook options
Custom Order By
Internet Explorer is broken!!!
form set focus vb.net
OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction
OL2k3: Unable to open your default e-mail folders. The information store could not be opened.
how to create tables in SQL Server 2008