我正在从一系列文件名中提取一列数据。我所有的文件名都是以下形式的字符串:
Temporary PSD Report 'Month' 2011.xls
我Replace
用来从每个月中提取月份,目前我分两个阶段进行操作,但似乎有点笨拙。AND
有没有办法在同一个字符串中使用某种类型的多个替换?
Dim strfilename As String
Dim mnth As String
Dim mnthshrt As String
mnth = Replace(strfilename, "Temporary PSD Report ", "")
mnthshrt = Replace(mnth, " 2011.xls", "")
我尝试使用&
并AND
引用要删除的两个部分,但它对原始字符串没有影响或产生错误。