我想使用正则表达式来匹配我的要求,对于同一个字符,它出现了3次,其中只插入了一个其他字符(为了简化答案,假设所有字符都在5
中)。
对于例如require_once '/Library/Server/Web/Data/Sites/Twig/lib/Twig/autoloader.php';
Twig_Autoloader::register();
$loader = new Twig_Loader_Filesystem('/Library/Server/Web/Data/Sites/templates/');
$twig = new Twig_Environment($loader, array(
'cache' => '/Library/Server/Web/Data/Sites/cache/',
'auto_reload' => 1
));
$twig -> render('login.html');
,[a-zA-Z]
符合我的要求,但是popape
,ccccAjAkA
(不是'其他'两者之间的#39; F' s)不合格。我该怎么写这个KKKccc
命令?
答案 0 :(得分:4)
使用(grep
中的实验)Perl兼容正则表达式(PCRE):
grep -P '([a-zA-Z])(?!\1)(.)\1(?!\1)(.)\1'