JavaScript
  Home arrow JavaScript arrow Page 4 - Stringing Things Along
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
JAVASCRIPT

Stringing Things Along
By: Harish Kamath, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 10
    2003-01-22


    Table of Contents:
  • Stringing Things Along
  • Elementary School
  • When Size Does Matter
  • Slice And Dice
  • Building Character
  • Search And Destroy
  • Bigger, Bolder, Better

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Stringing Things Along - Slice And Dice
    ( Page 4 of 7 )

    Next up, the substring() method. As the name implies, this is the function that allows you to slice and dice strings into smaller strings. Here's what it looks like:

    String.substring(start, end)


    where "start" is the position to begin slicing at, and "end" is the position to end at (note that in JavaScript, the first character of a string is at position 0).

    Here's an example which demonstrates how this works:
    <script language="Javascript">
    
    // set string
    var str = "The horse munched pink flowers, waiting for the elephant to
    make its presence felt.";
    
    // returns "pink flowers"
    alert(str.substring(18, 30));
    
    </script>


    You can use this function to split a string into smaller chunks of a fixed size,

    <script language="Javascript">
    
    // set string
    var str = "The horse munched pink flowers, waiting for the elephant to
    make its presence felt.";
    
    // chunk size
    var size = 9;
    
    // counter
    var count = 0;
    
    /* returns 
    The horse
    munched 
    pink flow
    ers, wait
    ing for t
    he elepha
    nt to mak
    e its pre
    sence fel
    t.
    */
    while ((size*count) < str.length)
    {
            temp = str.substring(size*count, (size*count)+size);
            count++;
            document.write(temp + "\r\n");
    }
    
    </script>


    You can also use the substring() method to extract a particular character from a string,

    <script language="Javascript">
    
    // set string
    var str = "The horse munched pink flowers, waiting for the elephant to
    make its presence felt.";
    
    // returns "p"
    alert(str.substring(18,19));
    
    </script>/pre>


    Similar, though not identical, is the substr() method, which returns a substring, given the start position and the number of characters to be extracted. This method differs from the substring() method discussed above in that its second argument is not the end position, but the number of characters to be returned - as illustrated below:

    <script language="Javascript">
    
    // set string
    var str = "Batman and Robin";
    
    // returns "Batman"
    alert(str.substr(0,6));		
    
    </script>


     
     
    >>> More JavaScript Articles          >>> More By Harish Kamath, (c) Melonfire
     

       

    JAVASCRIPT ARTICLES

    - Introduction to JavaScript
    - Adding Elements to a Tree with TreeView jQue...
    - Using the Persist Argument in a TreeView jQu...
    - Using Unique and Toggle in a TreeView jQuery...
    - Using Event Delegation for Mouseover Events ...
    - Using the Animate Option in a Treeview jQuer...
    - Using HTML Lists with Event Delegation in Ja...
    - Opened and Closed Branches on a TreeView jQu...
    - Mouseover Events and Event Delegation in Jav...
    - Creating a TreeView JQuery Hierarchical Navi...
    - Event Delegation in JavaScript
    - A Look at the New YUI Carousel Control
    - Working with Draggable Elements and Transpar...
    - Displaying Pinned Handles with Resizable Con...
    - Building Resizable Containers with the Ext J...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek