Menu
Including Special Characters in a JavaScript String

In JavaScript you define a string by placing its characters within double quotes ("). So what if you want to use double quote characters within the string? There are several characters that can cause problems when included in a string. These include double quotes and back slashes (\). Those, and are certain control characters can be included in a string if they are escaped.

An escaped character is preceded with a back slash, for example /" is the escaped character code for a double quote. Shown below is the assignment of a string variable that contains double quotes.

var strCat = "\"If you don't know where you're going, any road will get you there\", said Cheshire cat."

CharacterDescription
\"double quote
\'single quote
\\back slash
\nnew line
\rcarraiage return
\ttab

You can define a string by placing its characters within single quotes instead of double quotes, then you are permitted to include double quotes within the string, but then any single quotes within the string will need to be escaped.

<script>
   alert("This string contains a \n new line character.");
</script>

When the string is the output of a JavaScript element such as an alert box, use \n to create a new line. When the string output is to an HTML page, use the line break tag <br />.

Since an html page is required to flow, it does not have tab stops, so the tab character \t will not work. If you need spaces, use one or more &nbsp; (non-breaking space) character codes, but they you will not be able to hold column positions. You might be trying to do something that requires a table.


Learn more at amazon.com

More Java Script Code:
• Object-Oriented JavaScript
• Easy Code to Add Mouse Trails to Your Webpage
• Creating Java Script Dynamic or anonymous Functions at Runtime
• Calculators for Your Website : Decimal to Hexidecimal Converter
• Code to Drag and Drop an Image Anywhere on a Webpage
• Display a Value in Currency Format
• How to Use HTML5 canvas arc and arcTo Functions
• Working With the Keyboard in Java Script
• Easy Rollovers
• How to Shuffle the Deck With Java Script