Java Script provides the built-in String object that provides you with many methods for searching and manipulating strings. In this article I will provide you with examples that show you how to use the most important methods of the string object.
Welcome to Bucaro TecHelp!

Welcome to Bucaro TecHelp!
Maintain Your Computer and Use it More Effectively
to Design a Web Site and Make Money on the Web

[About BTH]  [User Agreement]  [Privacy Policy]  [Site Map]  [Contact Form]  [Advertise on BTH]  [News Feed]

Google
Web
This Site

Java Script Strings

In programming, the word "string" refers to an array of characters like a sentence or a paragraph. JavaScript provides a built-in String object which provides you with many methods for searching and manipulating strings. You can use the String object constructor to create a String object as shown below.

<script type="text/javascript">
var myString = new String("This is my string.");
alert(myString);
</script>

Note that the string must be contained within quotation marks. In fact, when you assign a string of characters within quotation marks to a variable in JavaScript, as shown below, it is automatically converted to a string.

<script type="text/javascript">
var myString = "This is my string.";
alert(myString);
</script>

In fact, the keyword var is not strictly necessary, as the "=" character will automatically assume that you are creating and assigning a variable, although I consider it bad programming practice to leave it out.

Concatenating Strings

To concatenate means to connect together. If you need to concatenate two or more strings, you can use the String object's concat method, as shown below.

<script type="text/javascript">
var firstString = "Now is the time for all good men ";
var secondString = "to come to the aid of their country.";

var myString = firstString.concat(secondString);
alert(myString);
</script>

In fact you can use the concat method to connect any number of strings together by separating the strings names with commas, using the syntax shown below.

string.concat(string1, string2, ... ,stringN)

In fact, using the concat method is not strictly necessary, as you can use the "+" operator to concatenate strings as shown below.

<script type="text/javascript">
var strFirst = "John";
var strLast = "Kennedy";
var strFull = strFirst + "F." + strLast;
alert(strFull);
</script>

Web Design Sections
Java Script Quick Reference
Java Script Data Types
Java Script Reserved Words
Java Script Arithmetic Operators
Comparison Operators
Java Script Arrays
Java Script Character Encoding and Decoding
The if/else Structure
The switch/case Structure
The for Loop
The while Loop
The break Statement
The continue Statement
JavaScript Math Object
Round a Number
Determine Absolute Value
Determine Minimum and Maximum
Generating Random Numbers
Java Script Trigonometric Methods
Java Script Number Object
Format a Number as Currency
Java Script Strings
Compare Two Strings
Find a Character or a Substring Within a String
Include a Quote Character in a String
Include a Backslash Character in a String
Define Lines in a String
Use Escape to Replace Dangerous Characters
Convert a Number to a String
Convert a String to a Number
The Document Object Model (DOM)
Accessing Web Page Elements
Interactively Set Webpage Colors
Get Webpage File Date and File Size
Dueling Windows
Cookie Power Made Easy

[Site User Agreement]  [Advertise on This site]  [Search This Site]  [Contact Form]
Copyright©2001-2007 Bucaro TecHelp P.O.Box 18952 Fountain Hills, AZ 85269