Does anyone know how to find regular expression string from javascript code? e.g. var pattern = /some regular expression/;
Is it possible to to with regular expression :) ?
|
Does anyone know how to find regular expression string from javascript code? e.g. var pattern = /some regular expression/; Is it possible to to with regular expression :) ? |
|||||
|
|
If I got your question right, and you need a regular expression which would find all the regular expressions in a JavaScript program, then I don't think it is possible. A regular expression in JavaScript does not have to use the // syntax, it can be defined as a string. Even a full-blown JavaScript parser would not be smart enough to detect a regular expression here, for instance:
So I would give up this idea unless you want to cover only a few very basic cases. |
||||
|
|
|
You want a regex to match a regex? Crazy. This might cover the simplest cases.
However, I peeked into the Javascript Textmate bundle and is has 2 regex for finding a regex start and end.
Which you could probably use as inspiration for toward your goal. |
|||
|
|
|
Check this article. Hope it helps. |
|||
|
|
|
Thanks for answers I have found also that it is nearly impossible task to do, but here is my regex which parses source code just fine:
|
|||
|
|