回答:
これは、NEWで始まり行内のどこかにスラッシュがあるすべての行に一致します。
^NEW\b.*/.*\K$
-reg
. matches newline
説明:
^ : begining of string
NEW\b : literally "NEW", followed by a word boundary to not match NEWLY
.*/.* : at least a slash in the line
\K : forget all we have seen until this position
$ : end of string
与えられた例の結果:
NEW /RAM-reg
VFXV RAM
NEW /TEST-reg
SDFSDF
DSFDSF
NEW RAM
NEW /RAM /TEST