Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Example: filename = 123.abc-xyz.txt I would like to put the following in to variables: v1=123, v2=abc, v3=xyz v4=txt.
filename = V1 & "." & v2 & "-" & v3 & "." & v4 '123.abc-xyz.txt
filename="123.abc-xyz.txt"
arr1 = split(filename, ".")
v1 = arr1(0)
v4 = arr1(2)
arr2 = split(arr1(1), "-")
v2 = arr2(0)
v3 = arr2(1)
wscript.echo "v1=" & v1 & " v2=" & v2 & " v3=" & v3 & " v4=" & v4