[PHP] problème regexp WIKI
Fermé
cl1n7
-
29 nov. 2009 à 19:05
clintm Messages postés 689 Date d'inscription lundi 11 avril 2005 Statut Membre Dernière intervention 10 juin 2015 - 30 nov. 2009 à 01:20
clintm Messages postés 689 Date d'inscription lundi 11 avril 2005 Statut Membre Dernière intervention 10 juin 2015 - 30 nov. 2009 à 01:20
A voir également:
- [PHP] problème regexp WIKI
- Easy php - Télécharger - Divers Web & Internet
- \R php ✓ - Forum PHP
- Br php ✓ - Forum PHP
- Expert php - Télécharger - Langages
- Php echo image ✓ - Forum PHP
2 réponses
Atropa
Messages postés
1940
Date d'inscription
mercredi 25 juin 2008
Statut
Membre
Dernière intervention
11 mai 2014
274
29 nov. 2009 à 23:43
29 nov. 2009 à 23:43
bonsoir,
utilise plutôt preg_replace()
pour le masque essaie ça : "#<%(.*)%>#U" et met $1 pour le remplacement
utilise plutôt preg_replace()
pour le masque essaie ça : "#<%(.*)%>#U" et met $1 pour le remplacement
clintm
Messages postés
689
Date d'inscription
lundi 11 avril 2005
Statut
Membre
Dernière intervention
10 juin 2015
75
30 nov. 2009 à 01:20
30 nov. 2009 à 01:20
merci beaucoup, je trouve quand même qu'on est moin aidé sur CCM qu'avant !
mais merci, j'avais trouver en cherchant ;)
voila :
$string = eregi_replace("((<%)(([a-z0-9 [:punct:]])*)(%>))", "hi hi", $string);
mais je vais voir quand même avec preg_replace();
merci
mais merci, j'avais trouver en cherchant ;)
voila :
$string = eregi_replace("((<%)(([a-z0-9 [:punct:]])*)(%>))", "hi hi", $string);
mais je vais voir quand même avec preg_replace();
merci