Having some problems figuring out the regex to match this:
function Array() { [native code] }
I'm trying to only match the text that will occur where "Array" is.
|
Having some problems figuring out the regex to match this:
I'm trying to only match the text that will occur where "Array" is. |
|||||||||
|
|
Are you trying to find out what type a variable is in javascript? If that's what want you can just compare the object's constructor to the constructor that you think created it:
This isn't really the best way to go about things in javascript. Javascript doesn't have a type system like C# does that guarantees you that a variable will have certain members if it's created by a certain constructor because javascript is a pretty dynamic languages and anything that an object gets from its constructor can be overwritten at runtime. Instead it's really better to use duck typing and ask your objects what they can do rather than what they are: http://en.wikipedia.org/wiki/Duck_typing
|
|||
|
In Perl, you'd use:
The variable ' If the [Edit: two ' Question about whether this works...here's my test case: Test script:
Test input lines (yes, deliberately misaligned):
Test output:
Tested with Perl 5.10.0 on Solaris 10 (SPARC): I don't believe the platform or version is a significant factor - I'd expect it to work the same on any plausible version of Perl. |
|||||||||||
|
|
So subsequently, I've gotten this which almost works:
However, it still matches the space before Array |
|||
|
|