我想在php中创建一个正则表达式,但我不能,我试过了:
$sType = preg_replace('/ferm/','fermé', $sType);
所以我需要在ferm之后成为任何角色
答案 0 :(得分:0)
将ferm?
添加到现有的正则表达式。
var regExpType = new RegExp("^ouvert|ferm(?:e|\\?)|fermé$","i");
答案 1 :(得分:0)
如果?
表示任何字符,则可以使用此正则表达式:
var regExpType = new RegExp("^ouvert|ferm.$","i");