oué ! cool merci

-------------------------------
Réponse au message :
-------------------------------
Set regEx = New RegExp
regEx.Pattern = "[a-z]"
regEx.IgnoreCase = True
regEx.Global = True
retVal = regEx.Test(taChaine)
If retVal Then
RegExpTest = "One or more matches were found."
Else
RegExpTest = "No match was found."
End If