VBA:[Tips]ある文字以降の文字列を取得する

なにがどう

ある文字列の、指定文字以降の文字を取得したい

どうするのか

Dim text As String
 text ="example@text.co.jp"
 text = Mid(text, InStr(text, "@") + 1)

取得文字列は@以降
最終更新:2015年07月22日 13:50