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

Yehuda Shiran, Ph.D.
Doc JavaScript

Developer News
Google Chrome Playing Catch-Up on Extensions
Open Solutions Alliance Gets New Leadership
Red Hat Spacewalk Expands Linux Management
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.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info

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

webref The latest from WebReference.com Browse >
Popular JavaScript Framework Libraries: An Overview - Part 3 · Accessing Your MySQL Database from the Web with PHP · Working with the DOM Stylesheets Collection
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
MS Access and MySQL · Cisco AutoQoS: VoIP QoS for Mere Mortals · While VoIP Adoption Explodes in Enterprise, Carrier Spending Lags