Hi I want to do the following, but don\'t know how to write the quotation marks
allSearchResults[0]=\" CXS101289/>
mix single and double quotes:
// single outside, double inside quotes
allSearchResults[0] = '- CXS101289/
';
or
// double outside, single inside quotes
allSearchResults[0] = "- CXS101289/
";
use one set of quotes but escape inside ones:
// double escaped quotes
allSearchResults[0] = "- CXS101289/
";
or
// single escaped quotes
allSearchResults[0] = '- CXS101289/
';
First approach with mixing is usually easier, because it presents less work since you only have to change the opening and closing quote.