yes, while i agree that a regexp would work, i think its unnecessary complexity. a simple pipe seperated string would suffice. it shouldnt need to do any fancy transformations, just remove certain starting words. i had an idea on how this would work and would be more than happy to share it with you.
btw, ([the ]) would not do what you wanted. the correct regexp is ^(the ).
your original regexp would potentially remove all t's, h's, e's and spaces. see what i mean about complexity? do we want to give users the ability to arbitrarily remove the second character with ^.(.) ?
edit... fixed some typos... its hard to type this stuff while im *supposed* to be working

Search
Help