Answers:
/pattern
Search forward in the file for the N-th line containing
the pattern. N defaults to 1. The pattern is a regular
expression, as recognized by the regular expression library
supplied by your system.
因此可接受的语法可能取决于您的系统。暂且看来,它似乎在我的Debian系统上接受扩展的正则表达式,请参见regex(7)
,以及为什么我的正则表达式在X上有效但在Y上无效?
\d
来自Perl,并非所有正则表达式引擎都支持。使用[0-9]
或[[:digit:]]
匹配数字。(它们的确切行为可能取决于语言环境。)