QRegExp - how to parse (G)UID?
-
Maybe you need to escape { ?
@
{[0-9A-F]{8}-[0-9A-F]{8}-[0-9A-F]{8}-[0-9A-F]{8}}
@ -
As Wikipedia says GUID has another format.
This should help you
@
{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}}
@And don't forget that you need to double \ in C++ code.
-
I think that you need to read something like "this":http://www.regular-expressions.info/