Re: R: Front Controller?

2004-07-02 Thread Robert McBride
Hi, Here's a little bit better link about Front Controller. http://java.sun.com/blueprints/corej2eepatterns/Patterns/FrontController.html -Rob Amleto Di Salle wrote: Hi, Struts contains a Front Controller implementation! Anyway, if you want to see the Front Controller design pattern and others plea

Re: Validator mask boundary matchers don't work

2004-05-11 Thread Robert McBride
Leonard, Lets see if I can help, I hope my regex skills aren't totally rusty. That regualar expression will only match exactly one word character then one whitespace character then another word character. (A word character is in the set of a-zA-Z0-9_) Try using this regex ^\w*\s\w*$ hopefully i