javascript parse parenthesis
Posted
by Paul
on Stack Overflow
See other posts from Stack Overflow
or by Paul
Published on 2010-06-08T00:28:11Z
Indexed on
2010/06/08
0:32 UTC
Read the original article
Hit count: 376
JavaScript
|parse
I need parse a string inside a parenthesis, which looks like (A, B, C), where A, B, and C are string that can contain any legal JavaScript code. For example, B might be a very long string with nested structures similar to (A, B, C). What would be the best way to parse such a string?
© Stack Overflow or respective owner