vani
Joined: 12 May 2008 Posts: 179
|
Posted: Wed Sep 02, 2009 9:59 am Post subject: |
|
|
Hi,
To split the string in js,we have a fucntion called "split()",below is the snytax.
Below example shows ,string seperating with comma.
-----------------------------------------------------------------
<script>
var YourString = "enteryour,text";
var Result = YourString .split(",");
</script>
-----------------------------------------------------------------
All the best  |
|