我在
这样的单元格中有以下字符串值"EnglishText / OtherLanguageText"
or
"UniversalText"
我需要从中获得2个子串 " EnglishText"和" OtherLanguageText" 要么 " UniversalText" (不包含" /"的文字)
我用命令
选择数据wbImportFrom.Sheets("Sheet 4").Cells(4, 6 + x).Value
我该怎么做? :-) 谢谢
答案 0 :(得分:3)
检查分割功能,并使用“/”作为分隔符。
像
这样的东西My_String = Sheets("Sheet 4").cells(4, 6 + x).value
String_array = Split(My_String,"/")
应该做的伎俩。请记住,您将使用数组。
来源: http://msdn.microsoft.com/en-us/library/6x627e5f(v=vs.90).aspx