Re: help to newbie

2003-02-28 Thread Janek Schleicher
On Thu, 27 Feb 2003 16:55:14 +0100, Alexander wrote: > regexp for > 3 digits optional "," and if there is a comma 2 digits Following this description, it's /\d\d\d(,\d\d)?/ > I've tried this but it simply didn't work "\\d{1,3}[.,]?\\d{0,2}" while seeing this one, it could be you meant: /\d{1,3

RE: help to newbie

2003-02-27 Thread Hanson, Rob
AM To: [EMAIL PROTECTED] Subject: help to newbie regexp for 3 digits optional "," and if there is a comma 2 digits I've tried this but it simply didn't work "\\d{1,3}[.,]?\\d{0,2}" -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

help to newbie

2003-02-27 Thread Alexander
regexp for 3 digits optional "," and if there is a comma 2 digits I've tried this but it simply didn't work "\\d{1,3}[.,]?\\d{0,2}" -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]