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 make a PC a thin client?
Backing up SharePoint Services 3.0
running a batch file before compilation
Getting Datagrid's DropDownList value in JavaScript
Brownian Motion Charted in VBA
Is there a way to enable remote registry service on my clinets using group policy?
Auto Fill based on 2nd Column
In-place upgrade of Hyper-V Server 2k8 R2 to Full Server 2k8 w/Hyper-v role
Script through SCCM will not copy files.
LOAD DATA INFILE - TIMESTAMP, the correct usage