<Complete VBScript di riferimento
La funzione StrComp confronta due stringhe e restituisce un valore che rappresenta il risultato del confronto.
La funzione StrComp può restituire uno dei seguenti valori:
- -1 (if string1 < string2)
- 0 (if string1 = string2)
- 1 (if string1 > string2)
- Null (if string1 or string2 is Null)
Sintassi
StrComp(string1,string2[,compare])
Parametro | Descrizione |
---|---|
string1 | Necessario. Espressione stringa |
string2 | Necessario. Espressione stringa |
compare | Opzionale. Specifica il confronto stringa da utilizzare. Il default è 0 Può avere uno dei seguenti valori:
|
esempio 1
response.write(StrComp("VBScript","VBScript"))
Output:
0
esempio 2
response.write(StrComp("VBScript","vbscript"))
Output:
-1
esempio 3
response.write(StrComp("VBScript","vbscript",1))
Output:
0
<Complete VBScript di riferimento