On 13/01/06, Yiping Yang <[EMAIL PROTECTED]> wrote: > Hi all, > > I want to catch the number in the following script: > > > <a href="javascript:void(173)" > > > I wrote the Regular expression like > > > Regular Expression: javascript:void(([1-9999]*)) > > Template: $1$ (I tried $2$ also) > > Number of Matches: 1 > > > > But the number 173 can't be caught. Maybe because of the bracket out of the > number, they may be treated as another group. > > > > What should I write the take this value from Regular Expression? >
Regular Expression: javascript:void \( ( \d+ ) \) Remove the spaces, which are included to make it easier to read. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

