Split comma number string : JavaScript DHTML examples (example source code) » Development » Regular Expressions

JavaScript DHTML
C++
Java Products
Java Articles
JavaScript DHTML Home  »   Development   » [  Regular Expressions  ]   
 



Split comma number string

<!-- 
     Example File From "JavaScript and DHTML Cookbook"
     Published by O'Reilly & Associates
     Copyright 2003 Danny Goodman
-->
var amounts = "30.25,120.00,45.09,200.10";
var amtArray = amounts.split(/\.\d{2},?/);
Related examples in the same category
1.  Searching and Replacing Substrings
2.  Regular Expression Tester
3.  The Regular Expression Tester
4.  Regular Expression Match Workshop
5.  Regular Expressions: Looking for a Match
6.  Regular Expressions: Extracting Data from a Match
7.  Regular Expressions: Replacing Strings via Regular Expressions
8.  check Date format








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.