質問編集履歴
2
試したことを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,6 +11,12 @@
|
|
11
11
|
同じセルに入れたいのですが何か方法はございませんか?
|
12
12
|
|
13
13
|
![イメージ説明](1145d43924f53f839a6db1f3b7ea8a72.png)
|
14
|
+
|
15
|
+
ーーー追記ーーー
|
16
|
+
|
17
|
+
1のみではなく、2、3、4とある場合はそれも取得したいです。
|
18
|
+
|
19
|
+
|
14
20
|
|
15
21
|
|
16
22
|
|
@@ -28,7 +34,7 @@
|
|
28
34
|
|
29
35
|
```ここに言語名を入力
|
30
36
|
|
31
|
-
=ImportXML("https://www.ldoceonline.com/dictionary/"&A2,"//*[@class='dictionary']/*[@class='dictentry'][1]//*[@class='Sense']
|
37
|
+
=ImportXML("https://www.ldoceonline.com/dictionary/"&A2,"//*[@class='dictionary']/*[@class='dictentry'][1]//*[@class='Sense']/span[5]")
|
32
38
|
|
33
39
|
```
|
34
40
|
|
@@ -54,6 +60,30 @@
|
|
54
60
|
|
55
61
|
|
56
62
|
|
63
|
+
### 試したこと
|
64
|
+
|
65
|
+
ーーー追記ーーー
|
66
|
+
|
67
|
+
```ここに言語を入力
|
68
|
+
|
69
|
+
=CONCATENATE(ImportXML("https://www.ldoceonline.com/dictionary/"&A2,"//*[@class='dictionary']/*[@class='dictentry'][1]//*[@class='Sense']/span[@class='DEF']"))
|
70
|
+
|
71
|
+
```
|
72
|
+
|
73
|
+
このように結合すると画像のようになってしまいます。
|
74
|
+
|
75
|
+
![イメージ説明](98700d6f5db39abcf1a1f5bc45f251ce.png)
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
```ここに言語を入力
|
80
|
+
|
81
|
+
= TEXTJOIN(",",FALSE, ImportXML("https://www.ldoceonline.com/dictionary/"&A2,"//*[@class='dictionary']/*[@class='dictentry'][1]//*[@class='Sense']/span[@class='DEF']"))
|
82
|
+
|
83
|
+
```
|
84
|
+
|
85
|
+
これも試していますが、上の画像と同じになります
|
86
|
+
|
57
87
|
|
58
88
|
|
59
89
|
### 補足情報(FW/ツールのバージョンなど)
|
1
コードの修正を行いました
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,7 +28,7 @@
|
|
28
28
|
|
29
29
|
```ここに言語名を入力
|
30
30
|
|
31
|
-
=ImportXML("https://www.ldoceonline.com/dictionary/"&A2,"//s
|
31
|
+
=ImportXML("https://www.ldoceonline.com/dictionary/"&A2,"//*[@class='dictionary']/*[@class='dictentry'][1]//*[@class='Sense'][1]/span[5]")
|
32
32
|
|
33
33
|
```
|
34
34
|
|