Splitで文字を分割できます。
下記は全角スペースで分割
mystr = "たけうち とおる" myArray = Split(mystr, " ") '名字 MsgBox (myArray(0)) '名前 MsgBox (myArray(1))
コメントする