I need a regular expression can match javascript functions like
function abc(var1, var2){
...
}
...
abc : function(var1, var2){
...
},
...
|
I need a regular expression can match javascript functions like
|
|||||
|
|
In JS, a function can contain functions (which in turn can contain functions, and so on):
Also, you can have string literals or comments that can contain (sub) strings that either look like functions:
or contain parts of functions your regex would trip over:
So, to answer you question what the regex would be to match functions in JS: it does not exist. You should/could use a proper parser for this. |
|||
|
|
|
Are you trying to parse JS with regex? If so, DON'T. Regex is a VERY BAD parser see these questions as well. RegEx match open tags except XHTML self-contained tags If you're not supposed to use Regular Expressions to parse HTML, then how are HTML parsers written? |
|||
|
|