我有一个 php.ini 文件,类似于以下示例:
;;;;;;;;;;;;;;;;;;;;
; Language Options ;
;;;;;;;;;;;;;;;;;;;;
; Enable the PHP scripting language engine under Apache.
; http://php.net/engine
engine = On
我需要搜索并选择所有没有分号“;”作为第一个字符的行
答案1
您可以使用正则表达式(regex):
^[^;].*
选择没有分号作为第一个字符的行。