IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

VBA Discussion :

comparer deux strings par ordre alphabétique en étant insensible à la case


Sujet :

VBA

  1. #1
    Candidat au Club
    Homme Profil pro
    Inscrit en
    Août 2012
    Messages
    3
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Août 2012
    Messages : 3
    Points : 2
    Points
    2
    Par défaut comparer deux strings par ordre alphabétique en étant insensible à la case
    Bonjour,
    Je suppose que le sujet est enterré depuis longtemps puisque résolu.

    http://www.developpez.net/forums/d76...e/#post7703821

    Cependant je suis confronté également au problème mais je souhaite être insensible à la case.
    Or les solutions proposées le sont toutes. Du coup, j'ai créé une 'tite fonction.
    Si ca peut aider d'autres:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
     
    Public Function compareStrAlph(str1 As String, str2 As String) As Boolean
        'return TRUE if str1 is before str2 in alphabetical order or is equal to str2
        'return FALSE if str1 is after str2 in alphabetical order
        'It is based on the ASCII order
        'this function is case insensitive (asc("A")= 65 // asc("Z")=90 asc("a")= 97 ... asc("z")=122)
        Dim i1 As Integer, i2 As Integer, i3 As Integer
        For i1 = 1 To Application.WorksheetFunction.min(Len(str1), Len(str2))
            i2 = Asc(Mid(str1, i1, 1))
            i3 = Asc(Mid(str2, i1, 1))
            If i2 >= 65 And i2 <= 90 Then
                i2 = i2 + 32
            End If
            If i3 >= 65 And i3 <= 90 Then
                i3 = i3 + 32
            End If
            Select Case i2
              Case Is < i3 'character from str1 before character from str2
                compareStrAlph = True
                i1 = Empty
                i2 = Empty
                i3 = Empty
                Exit Function
              Case i3 'same character
                If i1 = Application.WorksheetFunction.min(Len(str1), Len(str2)) Then 'last character to be compared
                    If Len(str1) <= Len(str2) Then
                        compareStrAlph = True
                        i1 = Empty
                        i2 = Empty
                        i3 = Empty
                        Exit Function
                    Else
                        compareStrAlph = False
                        i1 = Empty
                        i2 = Empty
                        i3 = Empty
                        Exit Function
                    End If
                End If
              Case Is > i3 'character from str1 after character from str2
                compareStrAlph = False
                i1 = Empty
                i2 = Empty
                i3 = Empty
                Exit Function
            End Select
            i2 = Empty
            i3 = Empty
        Next i1
        i1 = Empty
        'NB: The "= empty" declarations are useless because the variables are declared inside the subroutine so can be used only in the subroutine
    End Function
    Je débute en VBA donc le code est super optimisable. Si certains veulent l'améliorer, je suis preneur.
    PS: Je suis étonné que la fonction n'existe pas dans VBA.

  2. #2
    Expert éminent sénior


    Profil pro
    Inscrit en
    Juin 2003
    Messages
    14 008
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2003
    Messages : 14 008
    Points : 20 040
    Points
    20 040
    Par défaut
    Bonjour,

    Voir StrComp


Discussions similaires

  1. [11g] Classer par ordre alphabétique deux attributs
    Par ThibaudJER dans le forum SQL
    Réponses: 6
    Dernier message: 20/11/2014, 23h54
  2. Réponses: 5
    Dernier message: 26/05/2009, 10h03
  3. comparer deux string
    Par jul54 dans le forum MFC
    Réponses: 3
    Dernier message: 22/04/2004, 16h50
  4. Tri par ordre alphabétique
    Par orus8 dans le forum Langage SQL
    Réponses: 6
    Dernier message: 17/04/2003, 20h27
  5. [] Tri d'un tableau par ordre alphabétique
    Par cafeine dans le forum VB 6 et antérieur
    Réponses: 3
    Dernier message: 17/09/2002, 09h43

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo