在字符串

时间:2016-03-08 12:49:12

标签: excel vba excel-vba

我不知道为什么这不起作用。我确信有更简单的方法可以做到这一点,但我有图表名称,如“Projects_John”,我想获得names,即John

在以下示例中,chart_sel是一个等于“Projects_John”的字符串。

MsgBox Right(chartsel, Len(chart_sel) - InStr(1, chart_sel, "_"))

1 个答案:

答案 0 :(得分:2)

考虑:

Sub dural()
    Dim s As String

    s = "Projects_John"
    MsgBox Split(s, "_")(1)
End Sub