Thanks Thomas -- I don't have a good excuse other than I'm sick as a dog today, and running at only 60% ;)
Honestly did not expect IE js regex implementation to not handle lookaheads, but whatever...this simple solution will work great. I'm just leery of what other hidden issues lie out there. On Fri, Aug 14, 2009 at 12:14 PM, Thomas Broyer<[email protected]> wrote: > The problem I see is with your regex potentially (I mean, how it'll be > interpreted by the browser's JS engine). Why don't you simply write it > as either of the following? > > ^[a-z0-9]{8,15}$ > ^([a-z]|\d){8,15}$ > --~--~---------~--~----~------------~-------~--~----~ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
