我不知道为什么这不起作用。我确信有更简单的方法可以做到这一点,但我有图表名称,如“Projects_John”,我想获得names
,即John
在以下示例中,chart_sel是一个等于“Projects_John”的字符串。
MsgBox Right(chartsel, Len(chart_sel) - InStr(1, chart_sel, "_"))
答案 0 :(得分:2)
考虑:
Sub dural()
Dim s As String
s = "Projects_John"
MsgBox Split(s, "_")(1)
End Sub