Results 1 to 6 of 6

Thread: regular expressions

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #4
    Join Date
    Sep 2010
    Posts
    45
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows
    Thanks
    8

    Default Re: regular expressions

    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.

Similar Threads

  1. Problem using SQLite3 with regular expressions
    By Yakuza_King in forum Qt Programming
    Replies: 2
    Last Post: 18th October 2010, 09:43
  2. Qt Application linked to regular dll.....
    By Programm3r in forum Qt Programming
    Replies: 7
    Last Post: 10th February 2010, 07:37
  3. Regular Expression Problem
    By kaushal_gaurav in forum Qt Programming
    Replies: 2
    Last Post: 27th February 2009, 09:41
  4. QValidator, regular expressions and QLineEdit
    By hvengel in forum Qt Programming
    Replies: 1
    Last Post: 8th August 2007, 01:25
  5. Qt regular expressions!!
    By notsonerdysunny in forum Qt Programming
    Replies: 9
    Last Post: 1st April 2007, 12:56

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.