VC++ - Including " in a text string without ending the string
-
Hi All I am trying to include the inch symbol (ie " the same as a double quotation mark) in a function that requires a text string input between double quotation marks along the lines of: ? SysAllocStringByteLen("Some text with the inch symbol" and then end",44) How do I mark the " inch symbol so that it is not mistaken as the end of the text string Regards Jeremy
-
Hi All I am trying to include the inch symbol (ie " the same as a double quotation mark) in a function that requires a text string input between double quotation marks along the lines of: ? SysAllocStringByteLen("Some text with the inch symbol" and then end",44) How do I mark the " inch symbol so that it is not mistaken as the end of the text string Regards Jeremy
SysAllocStringByteLen("Some text with the inch symbol\" and then end",44)
-
SysAllocStringByteLen("Some text with the inch symbol\" and then end",44)