and:
[\d]{1,3}\,{0,1}
the sequence \d is equivalent to 0-9
to match the comma we must write \,
or
^[\d]{1,3}[\,]{0,1}
http://doc.qt.nokia.com/4.7/qregexp.html
and:
[\d]{1,3}\,{0,1}
the sequence \d is equivalent to 0-9
to match the comma we must write \,
or
^[\d]{1,3}[\,]{0,1}
http://doc.qt.nokia.com/4.7/qregexp.html
Last edited by bred; 8th November 2010 at 14:52.
Bookmarks