回答編集履歴
1
PHPで書いてたのでJava版に修正
answer
CHANGED
@@ -1,5 +1,13 @@
|
|
1
|
-
```
|
1
|
+
```:java
|
2
|
+
public class Main {
|
3
|
+
public static void main(String[] args) throws Exception {
|
4
|
+
|
2
|
-
String dr = "content://com.estrongs.files/storage/emulated/0/file.pdf"
|
5
|
+
String dr = "content://com.estrongs.files/storage/emulated/0/file.pdf";
|
3
|
-
dr =
|
6
|
+
dr = dr.replaceFirst("(?<=/)[^/]*$", "これが一番速いと思います");
|
7
|
+
|
8
|
+
System.out.println(dr);
|
9
|
+
|
10
|
+
}
|
11
|
+
}
|
4
12
|
|
5
13
|
```
|