답변:
이것은 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