标签: regex bash shell vim
我想在GID中选择/etc/passwd字段。
GID
/etc/passwd
我使用/:[0-9]\{1,\}选择UID,但我不知道如何选择GID。
/:[0-9]\{1,\}
UID
答案 0 :(得分:2)
GID是第四个字段,因此您可以使用:
/\([^:]\+:\)\{3}\zs[^:]\+ ***************###"""""" * matches the first three fields # starts the actual match from here " matches 1 or more non-colons