On Tue, 7 Dec 2004 05:52:28 -0800 (PST), "Paul Joseph"
<[EMAIL PROTECTED]> said:
> Hi,
> I am using an aggregate field, in a situation where
> there may or may not be anything to enter in some of
> the constituent fields.
> 
> Also, I would like the user to be able to enter pretty
> much anything...
> 
> Shouldn't the following regex work for each field?
> 
> ([.]*)
> 
I don't think there's any need to put a character class round the '.'
matcher:

"(.*)" will match any character 0 or more times.

Richard.
-- 
  Richard Lewis
  [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to