I am concatenating two fields, however in some cases the second field begins with \, but not always.
I'm trying to remove the possible extraneous \ using replace.
stDigitalFolderLocation = stDigitalLocation & "\" & stDigitalFolder
stDigitalFolderLocation = replace(stDigitalFolderLocation, "\\ ", "\")