You have to use a negative lookahead assertion.
(?!^ABC$)
You could for example use the following.
(?!^ABC$)(^.*$)
If this does not work in your editor, try this. It is tested to work in ruby and javascript:
^((?!ABC).)*$
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…