You can use this regex with a lookahead to find word before County
:
w+(?=s+County)
(?=s+County)
is a positive lookahead that asserts presence of 1 or more whitespaces followed by word County
ahead of current match.
RegEx Demo
If you want to avoid lookahead then you can use a capture group:
(w+)s+County
and extract captured group #1 from match result.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…