cs_darkduck
Messages postés138Date d'inscriptionvendredi 28 février 2003StatutMembreDernière intervention29 février 2008
-
1 sept. 2003 à 16:41
papyvore
Messages postés222Date d'inscriptionsamedi 15 novembre 2003StatutMembreDernière intervention16 décembre 2021
-
8 juin 2021 à 16:33
Bonjour,
j'aimerai savoir si ma string contient le mot "themot" comment faut-il faire svp ?
Ex : maphrase:='C'est ma phrase avec themot';
Comme maphrase contient le mot 'themot' ben ca fait :
japee
Messages postés1727Date d'inscriptionvendredi 27 décembre 2002StatutModérateurDernière intervention 6 novembre 20218 1 sept. 2003 à 20:24
-------------------------------
Réponse au message :
-------------------------------
> Bonjour,
>
> j'aimerai savoir si ma string contient le mot "themot" comment faut-il faire svp ?
>
> Ex : maphrase:='C'est ma phrase avec themot';
>
> Comme maphrase contient le mot 'themot' ben ca fait :
>
> Showmessage('trouvé');
>
> Merci
>
La formule magique :
if Pos('themot', 'C''est ma phrase avec themot') <> 0 then ShowMessage('trouvé');