How do I split a string like "http://www.google.com/abc%20123.mp3" into 2 strings like so I can seperate them ? (http://www.google.com/) (abc%20123.mp3)
Totally new with regex, sorry
Call ReplaceTest("(z\\)(/w)", "$1")
Function ReplaceTest(patrn, replStr)
Dim regEx, str1 ' Create variables.
str1 = "http://www.google.com/abc%20123.mp3"
Set regEx = New RegExp ' Create regular expression.
regEx.Pattern = patrn ' Set pattern.
regEx.IgnoreCase = True ' Make case insensitive.
ReplaceTest = regEx.Replace(str1, replStr) ' Make replacement.