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

Yehuda Shiran, Ph.D.
Doc JavaScript

Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs

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 >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint