Hello, I've got this problem here:
I just want recognize hello() in <second> group;Qt Code:
@"(?<first>[a-z]+)?(?<second>hello\(\))"To copy to clipboard, switch view to plain text mode
<first> can recognize:
ffddfhello
ffffhello
helloWorld
hello
helloffffff
But I can't recognized hello() in the second group........when input string is hello() I can see that hello (and only hello) is recognize by first (instead hello() must be recognized by second enterely....)
Is there an error please?
Bookmarks