Add escapes for back-slash and apostrophe.
Namespace:
nsCDEngine.BaseClasses
Assembly:
C-DEngine (in C-DEngine.dll)
public static string cdePartialEscapeString(
string strInput
)
Public Shared Function cdePartialEscapeString ( _
strInput As String _
) As String
public:
static String^ cdePartialEscapeString(
String^ strInput
)
Parameters
- strInput
- Type: String
The input string.
Return Value
The converted string.
This function modifies a string to convert two characters (back-slash and apostrophe)
into their HTML equivalent (""" and "&apos").