How do I match something thats "A known part (unknown word) (the rest of the string)" in a perl-style regex (PCRE)?
Something like this should do:
/^KNOWN PART (\w+) (.*)$/