Bonjour
J'essaie sans success de coder un regex pour verifier si un string contient toutes les voyelles.
cela fonctionne seulement si mystring contient AEIOUY mais pas dans un autre ordreCode:
1
2
3
4
5 Dim pattern As String = "AEIOUY" Dim regex = New Regex(pattern) For Each match As Match In regex.Matches(mystring) str = match.Value Next