I have this string and need to get word2 and word3 but not word1
this >word1 is a special ;word2 with ;word3
So far I have this regex but it simply selects all three words
(;[a-z0-9]+)
What I want is only receiving word2 and word3 because the semicolon of word1 belongs to an XML entity.