MS Access 替换函数未给出预期结果

MS Access 替换函数未给出预期结果

我正在连接两个字段,但在某些情况下第二个字段以 开头\,但并非总是如此。

我正在尝试\使用替换删除可能无关的内容。

stDigitalFolderLocation = stDigitalLocation & "\" & stDigitalFolder
stDigitalFolderLocation = replace(stDigitalFolderLocation, "\\ ", "\")

答案1

抱歉,用新的眼光看,我发现有一个多余的空格。

stDigitalFolderLocation = replace(stDigitalFolderLocation, "\\ ", "\")

应该:

stDigitalFolderLocation = replace(stDigitalFolderLocation, "\\", "\")

相关内容