I am using jQuery
I have got below in my string
str = "Michael,Singh,34534DFSD3453DS"
Now I want my result in three variables.
str1 = "Michael"
str2 = "Singh"
str3 = "34534DFSD3453DS"
Please suggest!
Thanks
|
I am using jQuery I have got below in my string
Now I want my result in three variables.
Please suggest! Thanks |
|||||
|
|
However, it is possible to get exactly what you want by adding new items to the
Example: http://jsfiddle.net/jonathon/bsnak/ |
||||
|
|
|
No jQuery needed, just javascript:
Or, to get your 3 variables:
|
|||
|
|
|
You don't need jQuery. Javascript does that built-in via the split function.
|
|||
|
|
|
Just use
|
|||
|
|
|
It's not only that JQuery is not needed but that JQuery is not meant to do such tasks. JQuery is for HTML manipulation, animation, event handling and Ajax. |
|||
|
|