Funzione di unione di VBScript
Una funzione, che restituisce una stringa che contiene un numero specificato di sottostringhe in una matrice. Questa è una funzione esattamente opposta del metodo Split.
Sintassi
Join(List[,delimiter])
List, un parametro obbligatorio. Un array che contiene le sottostringhe che devono essere unite.
delimiter, un parametro facoltativo. Il carattere, utilizzato come delimitatore durante la restituzione della stringa. Il delimitatore predefinito è Spazio.
Esempio
<!DOCTYPE html>
<html>
<body>
<script language = "vbscript" type = "text/vbscript">
' Join using spaces
a = array("Red","Blue","Yellow")
b = join(a)
document.write("The value of b " & " is :" & b & "<br />")
' Join using $
b = join(a,"$")
document.write("The Join result after using delimiter is : " & b & "<br />")
</script>
</body>
</html>
Quando il codice sopra viene salvato come .html ed eseguito in Internet Explorer, produce il seguente risultato:
The value of b is :Red Blue Yellow
The Join result after using delimiter is : Red$Blue$Yellow