Sitemap Sitemap  |  Contact Us Contact Us  |  Clients Clients
   Errors reference
  Home |  Downloads |  HareScript |  Websites/CMS |  Applications
Search for:  in: 
HareScript
Errors reference
 

Unexpected end of string.

The script encompassed a string without an end. To resolve this, review your script at the given line number and make sure your string declarations have ending quotes (') and double quotes (“).

// Error: STRING is not ended correctly (doesn’t have
// an ending double quote (")
STRING title := "Main page;

// Correct declaration
STRING title := "Main page";

For more information, see the HareScript language reference section on the STRING variable.

<< Back to errors overview

 
Related
Download documents
The online documents are also available for download in PDF format, for offline use.
Read more...
 
Top To top of page