A = "abc|de|fgh "
B = Split(a, "|") 입니다
C = 분할 (a, ",")
B a 를 세 부분으로 나눕니다.
B(0)="abc ",b( 1)="de", b(2)="fgh "
C 의 값은 a: 와 같습니다
C(0) = "abc|de|fgh "