You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Prototype & script.aculo.us
Hi ALL!
how can i obtain of matched substrings in RegExp object?
the prototypejs masks original RegExp.match method.
the original method returns array of matched strings. the new method
just returns true/false only.
thanks.
T.J. Crowder
unread,
Jan 20, 2012, 10:15:43 AM1/20/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Prototype & script.aculo.us
Hi,
The JavaScript RegExp object doesn't have a `match` method at all
(neither on `RegExp` nor on its prototype[1]). You're thinking of
either `RegExp#exec`[2] or `String#match`[3].