For Example. I want to get the numbers without 'the' or 'abc' or 'he' before them;
the89 (no match)
thisis90 (match 90)
iknow89999 (match 89999)
getthe984754 (no match)
abc58934(no match)
he759394 (no match)
I try to use this (?<!(the|abc|he))[0-9]+
, but failed
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…