質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -13,3 +13,27 @@
|
|
13
13
|
</div>
|
14
14
|
|
15
15
|
```
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
## 試したこと
|
22
|
+
|
23
|
+
```python
|
24
|
+
|
25
|
+
import bs4
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
soup = bs4.BeautifulSoup('<div class="content"><div class="hoge">hogehoge</div>fugafuga</div>', 'lxml')
|
30
|
+
|
31
|
+
print(soup.select('.content')[0].text)
|
32
|
+
|
33
|
+
```
|
34
|
+
|
35
|
+
上記の出力は
|
36
|
+
|
37
|
+
hogehogefugafuga
|
38
|
+
|
39
|
+
になって、余計なhogehogeが混じってしまいます。
|