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
Computer Browsing Windows 2008 Server with XP Professional Clients
Load updates from Sql text files
Access 2007 merge form + subform to Word
Call function in outlook
Webservice integration into client application.
T-SQL -- INSERT Statement Continue On Error
What happens to the OLD .OST file(s) (do I need them anymore?
snytax error
Does anyone know how to create a check in check out Inventory.
How do I perform a calculation in an update query?