J'ai ce code: $string1 = "My name is 'Kate' and im fine"; $pattern = "My name is '(.*)' and im fine"; preg_match($pattern , $string1, $matches); echo $matches[1]; et quand je suis exécuté, il renvoie cette erreur: Attention: preg_match () [function.preg-match]: Le délimiteur ne doit pas être...