
January 29th, 2013, 10:16 AM
|
|
Contributing User
|
|
Join Date: Jul 2007
Location: Joensuu, Finland
|
|
Quote: | Originally Posted by grahamlabdon Could someone please help me and explain why this is? |
The regex “^QDate*$” doesn’t match the string “QDate*” but it does match “QDate”, “QDatee”, “QDateeeeeee” and so on.
You probably meant either “^QDate.*$” (strings starting QDate) or “^QDate\*$” (exactly the string “QDate*”).
__________________
My armada: openSUSE 12.3 (home desktop, laptop, work desktop), Ubuntu 12.04 LTS (mini laptop), Debian GNU/Linux 7.0 (server), Mythbuntu 12.04 LTS (HTPC), Bodhi Linux 2.0 & Windows 7 Ultimate (test desktop), FreeBSD 9.1 (test server)
|