Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

VBScript Split Function


❮ Complete VBScript Reference

The Split function returns a zero-based, one-dimensional array that contains a specified number of substrings.

Syntax

Split(expression[,delimiter[,count[,compare]]])

Parameter Description
expression Required. A string expression that contains substrings and delimiters
delimiter Optional. A string character used to identify substring limits. Default is the space character
count Optional. The number of substrings to be returned. -1 indicates that all substrings are returned
compare Optional. Specifies the string comparison to use.

Can have one of the following values:

  • 0 = vbBinaryCompare - Perform a binary comparison
  • 1 = vbTextCompare - Perform a textual comparison

Examples

Example 1

<%

a=Split("W3Schools is my favourite website")
for each x in a
    response.write(x & "<br />")
next

%>

The output of the code above will be:

W3Schools
is
my
favourite
website
Show Example »

Example 2

Splitting the text using the delimiter parameter

<%

a=Split("Brown cow, White horse, Yellow chicken",",")
for each x in a
    response.write(x & "<br />")
next

%>

The output of the code above will be:

Brown cow
White horse
Yellow chicken
Show Example »

Example 3

Splitting the text using the delimiter parameter, and the count parameter

<%

a=Split("W3Schools is my favourite website"," ",2)
for each x in a
    response.write(x & "<br />")
next

%>

The output of the code above will be:

W3Schools
is my favourite website
Show Example »

Example 4

Splitting the text using the delimiter parameter with a textual comparison:

<%

a=Split("SundayMondayTuesdayWEDNESDAYThursdayFridaySaturday","day",-1,1)
for each x in a
    response.write(x & "<br />")
next

%>

The output of the code above will be:

Sun
Mon
Tues
WEDNES
Thurs
Fri
Satur
Show Example »

Example 5

Splitting the text using the delimiter parameter with a binary comparison:

<%

a=Split("SundayMondayTuesdayWEDNESDAYThursdayFridaySaturday","day",-1,0)
for each x in a
    response.write(x & "<br />")
next

%>

The output of the code above will be:

Sun
Mon
Tues
WEDNESDAYThurs
Fri
Satur
Show Example »

❮ Complete VBScript Reference
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.