JavaScript
  Home arrow JavaScript arrow Page 2 - JavaScript arrays: combining and splitting
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Dedicated Servers  
Download TestComplete 
IBM® developerWorks 
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? 
JAVASCRIPT

JavaScript arrays: combining and splitting
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 7
    2006-03-07

    Table of Contents:
  • JavaScript arrays: combining and splitting
  • How to combine or join all elements available in a two-dimensional array using JavaScript
  • How to split a string into an array using JavaScript
  • How to split a sentence into words using JavaScript

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb 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
     
     
    Iron Speed
     
    ADVERTISEMENT

    Free Web 2.0 Code Generator! Generate data entry and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!

    JavaScript arrays: combining and splitting - How to combine or join all elements available in a two-dimensional array using JavaScript
    (Page 2 of 4 )

    In the previous section, we tried to combine all elements available in a single dimensional array.  Now, let us try to develop a simple script (JavaScript) to join all elements available in a two-dimensional array.  Take a look at the following code:

    <html>
          <head>
     
               <meta  name=vs_targetSchema  content="http://schemas.microsoft.com/intellisense/ie5">
    <script  id="clientEventHandlersJS" language="javascript">
    <!--
    function
    Show()
    {
          var salaryArray = [[2300, 3105, 2909, 4800], 
                      [1800, 1940, 2470, 4350], 
                      [900, 1200, 1923, 3810]];
        var arrayAsString =""
          for (var i = 0; i < salaryArray.length; i++) {
                arrayAsString += "<br>-----<br>" + salaryArray[i].join("<br>");
          }
          document.write(arrayAsString);
    }


    function ButtonShow_onclick() {
          Show();
    }
    //-->
                </script>
          </head>
          <body>
          <form  id="form1">
                      <input  type="button"  value="Show"  id="ButtonShow"  name="ButtonShow"  onclick="return ButtonShow_onclick()">
                </form>
          </body>
    </html>

    I shall explain the above code in the next section.

    How to combine or join all elements available in a two-dimensional array using JavaScript: discussion

    Within the code in the previous section, I mainly created a simple button (which is identified as “ButtonShow”).  The button is defined with an “onclick” event which calls a JavaScript function, “ButtonShow_onclick.”  The same function simply calls another JavaScript function named “Show.”

    The function “Show” is defined as follows:

    function eShow()
    {
          var salaryArray = [[2300, 3105, 2909, 4800], 
                      [1800, 1940, 2470, 4350], 
                      [900, 1200, 1923, 3810]];
        var arrayAsString =""
          for (var i = 0; i < salaryArray.length; i++) {
                arrayAsString += "<br>-----<br>" + salaryArray[i].join("<br>");
          }
          document.write(arrayAsString);
    }

    The first statement creates a two-dimensional array named “salaryArray.”  In this case, it is a direct declaration and initialization.  For further details on this type of declaration, you can read through my first article of this series. 

    To hold the entire string of all values, I declared a new variable as follows:

        var arrayAsString =""

    Now, I need to go through all the single dimensional arrays present in “salaryArray.”  For this, I tried to manage a loop as follows:

          for (var i = 0; i < salaryArray.length; i++) {

    Within the above statement, “salaryArray.length” gives the number of single dimensional arrays present in “salaryArray.”  And I go through each of them starting at the 0th location (or index).

                arrayAsString += "<br>-----<br>" + salaryArray[i].join("<br>");

    Using the above statement, I combine (or join) each single dimensional array present in “salaryArray” and finally append (or add) to the variable “arrayAsString.”  Just for the sake of clarity in output, I used <BR> tags during concatenation.  You can learn by experimenting on it on your own (by, for instance, removing each <BR> tag and guessing the output).

    I finally display the combined string using the following statement:

          document.write(arrayAsString);

    More JavaScript Articles
    More By Jagadish Chaterjee


       · Hello, I introduced joining and splitting arrays in javascript in this article....
     

    JAVASCRIPT ARTICLES

    - A Closer Look at Smart Markers with Yahoo! M...
    - Using Polylines and Smart Markers with Yahoo...
    - Bulleted Menu of Links
    - Creating Click Loggers and Basic Markers wit...
    - Adding Pan Controls to Yahoo! Maps
    - Adding Zoom Controls to Yahoo! Maps
    - Working with Yahoo! Maps
    - Building Image Zooming Controls with the DOM...
    - Working with Multiple Graphics for a Zoom Ap...
    - Improving an Image Zooming Application with ...
    - Zooming in on Images with JavaScript
    - JavaScript Date Objects: Universal Coordinat...
    - Javascript Objects: More Date Methods
    - JavaScript Objects: Dates
    - JavaScript Objects: Finishing Strings

    Iron Speed





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway