I tried using the following regex but it didn't work.
myString.replaceAll ("\", "/");
An exception:
java.util.regex.PatternSyntaxException: Unexpected internal error near index 1 \ ^ at java.util.regex.Pattern.error (Unknown Source) in java.util.regex.Pattern.compile (Unknown Source) in java.util. regex.Pattern (Unknown. Source) in java.util.regex.Pattern.compile (Unknown Source) in java.lang.String.replaceAll (Unknown Source)
Your code does not even compile.
"\" ", . String h = "\"hello\""; h "hello".
"\"
"
String h = "\"hello\"";
h
"hello"
, "\\" ( ), . . , "\\d+" ( ).
"\\"
"\\d+"
, . replace(char, char) , all.
replace(char, char)
myString.replace('\\', '/');
, , File.separator, .
File.separator
4 , escape .
myString.replaceAll("\\\\", "/");
Source: https://habr.com/ru/post/1782405/More articles:Вычисление с разным шагом для меток оси Y в Gnuplot - gnuplotUISplitViewController stops auto-rotation after trying to use UINavigationController inside it - iosHow to determine if a Bluetooth device is connected - androidHow to get Touch Event Pressure? - androidFile Ensime Vim.ensime Not Found - vimhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1782406/passing-parameters-to-eventlistener-function&usg=ALkJrhiPadiueP6Py45F6IeJ0YHXxQh-aAhow to install cygwin and mingw under windows 7? - gccStatistics / GCC code analysis - gccWhy does the ProgressBar stop the animation when replacing the layout in Android? - androidJava API for creating pdf with tables: any recommendations? - javaAll Articles