Funzione VBScript StrComp

StrComp

La funzione StrComp restituisce un valore intero dopo aver confrontato le due stringhe date. Può restituire uno qualsiasi dei tre valori -1, 0 o 1 in base alle stringhe di input da confrontare.

  • Se String 1 <String 2, StrComp restituisce -1

  • Se String 1 = String 2, StrComp restituisce 0

  • Se String 1> String 2, StrComp restituisce 1

Sintassi

StrComp(string1,string2[,compare])

Descrizione

  • String1, un parametro obbligatorio. La prima espressione String.

  • String2, un parametro obbligatorio. La seconda espressione String.

  • Confronta, un parametro facoltativo. Specifica il confronto tra stringhe da utilizzare. Può assumere i valori indicati di seguito:

    • 0 = vbBinaryCompare - Esegue il confronto binario (impostazione predefinita)

    • 1 = vbTextCompare - Esegue il confronto del testo

Esempio

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         document.write("Line 1 :" & StrComp("Microsoft","Microsoft") & "<br />")
         document.write("Line 2 :" &StrComp("Microsoft","MICROSOFT") & "<br />")
         document.write("Line 3 :" &StrComp("Microsoft","MiCrOsOfT") & "<br />")
         document.write("Line 4 :" &StrComp("Microsoft","MiCrOsOfT",1) & "<br />")
         document.write("Line 5 :" &StrComp("Microsoft","MiCrOsOfT",0) & "<br />")

      </script>
   </body>
</html>

Quando lo salvi come .html e lo esegui in Internet Explorer, lo script sopra produrrà il seguente risultato:

Line 1 :0
Line 2 :1
Line 3 :1
Line 4 :0
Line 5 :1