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
Update Temp Recordset using VBA
SQL 2005 refreshing database users
Argument not specified for parameter 'sender' of 'Protected Sub EmailRegAttendeeNotices_Cl<wbr />ick(sender<wbr /> As Object, e As System.EventArgs)'.
How to set a font to a CMenu ?
Insert pictures into Meeting Request
Excel Cell Click Capture
How do I determine if a server is or was a DC
Visual basic: how to use the Mouse wheel on and off (lebans software):
Outlook 2007 Add-in menu button click event... Strange behavior.
how to skip tempdb in SP_MSFOREACHTABLE and SP_SPACEUSED