Say I have an array like this:
['test\\test1\\test2\\myfile.html', 'test\\test1\\test2\\myfile2.html']
I just want to replace all of the "\ \" characters with "/" and store this into a new array so that the new array should look like this:
['test/test1/test2/myfile.html', 'test/test1/test2/myfile2.html']
How could I go about doing this?