function VBReplaceBackSlash(replStr)	
	Dim regEx        	
	Set regEx = New RegExp
	regEx.Pattern = "\\" 
	regEx.IgnoreCase = True
	regEx.Global=True 	
	VBReplaceBackSlash = regEx.Replace(replStr, "\\") 
End Function

function VBReplaceSlash(replStr)	
	Dim regEx        	
	Set regEx = New RegExp
	regEx.Pattern = "/" 
	regEx.IgnoreCase = True
	regEx.Global=True 	
	VBReplaceSlash = regEx.Replace(replStr, "\\") 
End Function

function VBReplaceSlashwithSpecificChar(replStr,replChar)	
	Dim regEx        	
	Set regEx = New RegExp
	regEx.Pattern = "/" 
	regEx.IgnoreCase = True
	regEx.Global=True 	
	VBReplaceSlashwithSpecificChar = regEx.Replace(replStr, replChar) 
End Function