spacer
Yehuda Shiran September 25, 2000
Splitting a String
Tips: September 2000

Yehuda Shiran, Ph.D.
Doc JavaScript

Developer News
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?

Javascript's String object contains several useful methods which can help ease the pain of string manipulation. One of these methods is the split() function.

The split() function is really quite easy to use:

var myString = new String('red,green,blue');
var myArray = myString.split(',');

You will get:

  • myArray[0] is 'red'
  • myArray[1] is 'green'
  • myArray[2] is 'blue'

The full syntax for the split() method is:

split([separator][, limit])

Where:

  • separator is a string containing the character (or characters) which is used as the delimiter.
  • limit is the maximum number of substrings to be extracted.

Using the limit parameter you can choose to extract only the first few elements from a string:

var myString = new String('red,green,blue');
var myArray = myString.split(',', 2);

and get:

  • myArray[0] is 'red'
  • myArray[1] is 'green'

This tip has been contributed by Amos Bannister.


People who read this tip also read these tips:

Look for similar tips by subject:

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Creating a Banking Application Deposit Script · Rolling Out Your Own HTML Application Version Control · HTML 5: Client-side Storage
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
XPath Support for Working with XML Data in MySQL · SSDs Take Center Stage · WebPlus X4 Adds New Features for Easy Site Design