Home > Back-end >  The representation of a string in double quotes
The representation of a string in double quotes

Time:10-27

Ask a low-level problem, experts don't laugh, I was meant to s=s + " Jet OLEDB: Registry Path="" " the red code are to be added, this how to deal with?

CodePudding user response:

S=s + "Jet OLEDB: Registry Path=" \ ""

CodePudding user response:

S=s + "Jet OLEDB: Registry Path=" + "" "+" \ ""; This will do

CodePudding user response:

"Jet OLEDB: Registry Path=" \ "";

CodePudding user response:

AnsiString TempStr;
TempStr="'" "'";

CodePudding user response:

"The use of escape characters, characters in a string need to use " said

CodePudding user response:

"The use of escape characters, characters in a string to use " said
  • Related