I have a line like
C:\dev\deploy_test.log
I want to use Groovy to convert a string to
C:/dev/deploy_test.log
I try to execute it with a command
Change_1 = Log_file_1.replaceAll('\','/');
It does not convert this string
groovy
Bilow yuriy
source share