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
Monthname function in Access and Infopath
ORACLE SQL DEVELOPER reports error
Certreq in Windows 2003 Server (Certificate Authority)
Dropdown of Word 2003, Insert Autotext subfolders are all empty
Stop sysprep from running on boot
SBS08 - RWW - FQDN - Can't Get it to Work?
Always Displaying The Last Text In A Scrolling Text Box
One of my Excel file always gives me a "File already open" messge.
Bulk Edit global address book
How to pass variable to sql server stored procedure from access mdb form