On Feb 8, 2006, at 9:53 AM, Abel Angel wrote:
On Wed, 8 Feb 2006, Alex Dean wrote:
On Feb 8, 2006, at 8:01 AM, Shane Chrisp wrote:
@[0-9]\*.*
This might be better : @[0-9].*
Indeed Alex, it works like you posted; and I can see that it's really
greedy regexp;
You should test to be sure, but you might only need '@[0-9]' (quotes
are not part of regexp). That means 'an @ followed by any digit',
which seems to be what you're looking for. Depending on the regexp
engine, you can also write that as '@\d'.
The additional '.*' means 'match anything' (more or less), and I
don't think that leaving it off will really change anything.
alex
.