I have one text string as following :
workingtable;AB8C;book_id;7541;
I would like to convert them into JSON format like : {"workingtable":"AB8C","book_id":"7541"}
Is there any JSON function so that I can convert the raw text string to JSON format like that in Javascript?
Thanks