I want to distinquish strings like
`citizen_group` int(10) NOT NULL,
`container_group` int(10) NOT NULL,
from strings like
PRIMARY KEY (`citizen_group`,`container_group`),
KEY `fk_containergroup_readeraccess` (`container_group`)
Therefor I've created this regex
`?\w+`?\s\w+\(d+(,\s?\d+)?\)
^
*\w+`* : string, wrapped in ` is possible. `column`
\s : followed by a space
\w+ : followed by one or more characters real
\(d+ : followd by ( with one or more digits (10
(,\s?\d)?: followed by 0 or 1 , with digits ,3
\) : end with a ) )
But this regex selects not only to first 2 strings, but also the last
KEY `fk_containergroup_readeraccess` (`container_group`)
Can someone tell me why this is? And how I need to modify the regex so that it selects only the first two?