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

Yehuda Shiran, Ph.D.
Doc JavaScript

Developer News
Google Going Native With Chrome
Mozilla Fixes Firefox Flaws as 3.5 Release Nears
Microsoft and Novell Still Bosom Buddies

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, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
XML and PHP Simplified · Creating a ASP.NET Contact Form · Data Filtering with PHP
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Intel to Host Live Nehalem Q&A · 12 Tips to Troubleshoot Network File-Sharing · 10 Tips for Selling on Kijiji