Possible Duplicate:
How do I split this string with JavaScript?
I have a string in following format
part1/part2
/ is the delimiter
now i want to get split the string and get part 1.How can i do it?
I have a string in following format
now i want to get split the string and get part 1.How can i do it? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
|||
|
|
For your example result will be an array with 2 entries: "part1" and "part2" |
||||
|
|