a = "abc|de|fgh"
b = Split(a, "|")
c = Split(a, ",")
b會把a拆成三個:
b(0)="abc",b(1)="de", b(2)="fgh"
c的值會等於a:
c(0) = "abc|de|fgh"