func X3.FR_TEXTE_COMPTER_OCCURRENCES(Clbfile TEXTE_A_PARCOURIR_IN, Char VALEUR_A_CHERCHER_IN, Tinyint SENSIBLE_CASSE_IN) : Integer
func X3.FR_TEXTE_COMPTER_OCCURRENCES(Clbfile TEXTE_A_PARCOURIR_IN, Char VALEUR_A_CHERCHER_IN, Tinyint SENSIBLE_CASSE_IN) : Integer

Compte le nombre d'occurrences d'un morceau de texte dans un texte.

  • TEXTE_A_PARCOURIR_IN Clbfile Texte dans lequel faire la recherche
  • VALEUR_A_CHERCHER_IN Char Morceau de texte à rechercher et compter
  • SENSIBLE_CASSE_IN Tinyint Prise en compte ou non de la casse (0=Non, 1=Oui)
Retour Integer Nombre d'indices copiés
Exemple

func X3.FR_TEXTE_COMPTER_OCCURRENCES("Combien de fois le mot Fois cette fois ?", "fois", 1)
Renvoie : 2